/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors from Guide */
    --dark-charcoal: #18182B;
    --gunmetal-gray: #575C66;
    --steel-silver: #BDBFC4;
    --cold-white: #EAEAEC;
    --accent-gold: #C3A662;
    --spark-cyan: #89D5E4;
    
    /* Additional Colors */
    --pure-black: #000000;
    --pure-white: #ffffff;
    --dark-blue: #1A1E23;
    
    /* Typography */
    --font-primary: 'Cinzel', serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--cold-white);
    background-color: var(--dark-charcoal);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cold-white);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--spark-cyan);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.helm-logo {
    width: 100%;
    height: 100%;
    position: relative;
}

.helm-crest {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 12px;
    background: var(--cold-white);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.helm-body {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 25px;
    background: var(--cold-white);
    border-radius: 15px 15px 8px 8px;
}

.helm-visor {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: var(--dark-charcoal);
    border-radius: 4px;
}

.helm-wings {
    position: absolute;
    top: 15px;
    width: 100%;
    height: 20px;
}

.wing-left, .wing-right {
    position: absolute;
    width: 15px;
    height: 20px;
    background: var(--cold-white);
}

.wing-left {
    left: -15px;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

.wing-right {
    right: -15px;
    clip-path: polygon(100% 0%, 0% 50%, 100% 100%);
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cold-white);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--cold-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--spark-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--spark-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, var(--dark-blue) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-triangles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid rgba(137, 213, 228, 0.1);
}

.triangle-1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.triangle-2 {
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.triangle-3 {
    bottom: 20%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 3rem;
}

.hero-helm {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    position: relative;
    animation: helmGlow 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-helm-crest {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 48px;
    background: var(--cold-white);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.hero-helm-body {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 100px;
    background: var(--cold-white);
    border-radius: 60px 60px 30px 30px;
}

.hero-helm-visor {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 32px;
    background: var(--dark-charcoal);
    border-radius: 16px;
}

.hero-helm-wings {
    position: absolute;
    top: 60px;
    width: 100%;
    height: 80px;
}

.hero-wing-left, .hero-wing-right {
    position: absolute;
    width: 60px;
    height: 80px;
    background: var(--cold-white);
}

.hero-wing-left {
    left: -60px;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

.hero-wing-right {
    right: -60px;
    clip-path: polygon(100% 0%, 0% 50%, 100% 100%);
}

.hero-spark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: var(--spark-cyan);
    border-radius: 50%;
    animation: sparkPulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes sparkPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

@keyframes helmGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(137, 213, 228, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(137, 213, 228, 0.6)); }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    color: var(--cold-white);
    margin-bottom: 1rem;
    letter-spacing: 4px;
    animation: titleFadeIn 1s ease-out 0.5s both;
    line-height: 1.2;
}

.hero-title br {
    display: block;
    content: "";
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 3rem;
    display: inline-block;
}

.hero-tagline {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--spark-cyan);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    animation: titleFadeIn 1s ease-out 0.7s both;
}

.hero-message {
    font-size: 1.2rem;
    color: var(--steel-silver);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: titleFadeIn 1s ease-out 0.9s both;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    animation: titleFadeIn 1s ease-out 1.1s both;
}

.cta-button {
    display: inline-block;
    background: var(--steel-silver);
    color: var(--dark-charcoal);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: var(--gunmetal-gray);
    color: var(--cold-white);
    box-shadow: 0 20px 40px rgba(87, 92, 102, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--spark-cyan);
    border-bottom: 2px solid var(--spark-cyan);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--dark-charcoal);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-paragraph {
    font-size: 1.3rem;
    color: var(--steel-silver);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(137, 213, 228, 0.05);
    border: 1px solid rgba(137, 213, 228, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(137, 213, 228, 0.1);
    border-color: var(--spark-cyan);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--spark-cyan);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--steel-silver);
    font-weight: 500;
}

/* Strategy Section */
.strategy {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-charcoal) 100%);
    position: relative;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.strategy-card {
    background: rgba(24, 24, 43, 0.8);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(137, 213, 228, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.strategy-card:hover {
    transform: translateY(-15px);
    border-color: var(--spark-cyan);
    box-shadow: 0 20px 40px rgba(137, 213, 228, 0.2);
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(137, 213, 228, 0.1), transparent);
    transition: left 0.5s ease;
}

.strategy-card:hover::before {
    left: 100%;
}

.strategy-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    position: relative;
}

.sword-icon {
    width: 100%;
    height: 100%;
    position: relative;
}

.sword-blade {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 60px;
    background: var(--cold-white);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.sword-hilt {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
    background: var(--accent-gold);
    border-radius: 10px;
}

.sword-spark {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--spark-cyan);
    border-radius: 50%;
    animation: sparkPulse 2s ease-in-out infinite;
}

.triangle-icon {
    width: 100%;
    height: 100%;
    position: relative;
}

.triangle-up {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid var(--cold-white);
}

.triangle-spark {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--spark-cyan);
    border-radius: 50%;
    animation: sparkPulse 2s ease-in-out infinite;
}

.helm-icon {
    width: 100%;
    height: 100%;
    position: relative;
}

.helm-simple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 50px;
    background: var(--cold-white);
    border-radius: 30px 30px 15px 15px;
}

.helm-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 70px;
    background: radial-gradient(circle, rgba(137, 213, 228, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: helmGlow 3s ease-in-out infinite;
}

.strategy-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--cold-white);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.strategy-description {
    font-size: 1.1rem;
    color: var(--steel-silver);
    line-height: 1.7;
}

.strategy-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.strategy-card:hover .strategy-image {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(137, 213, 228, 0.5));
}

/* Prytaneum Section */
.prytaneum {
    padding: var(--section-padding);
    background: var(--dark-charcoal);
    position: relative;
}

.prytaneum-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.prytaneum-description {
    font-size: 1.3rem;
    color: var(--steel-silver);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.prytaneum-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--steel-silver);
    color: var(--dark-charcoal);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.prytaneum-button:hover {
    transform: translateY(-3px);
    background: var(--gunmetal-gray);
    color: var(--cold-white);
    box-shadow: 0 15px 30px rgba(87, 92, 102, 0.3);
}

.button-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--dark-charcoal);
    border-bottom: 2px solid var(--dark-charcoal);
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.prytaneum-button:hover .button-arrow {
    transform: rotate(-45deg) translateX(5px);
}

.operational-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    height: 300px;
}

.grid-item {
    background: rgba(137, 213, 228, 0.1);
    border: 1px solid rgba(137, 213, 228, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    animation: gridPulse 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-item:nth-child(1) { animation-delay: 0s; }
.grid-item:nth-child(2) { animation-delay: 0.5s; }
.grid-item:nth-child(3) { animation-delay: 1s; }
.grid-item:nth-child(4) { animation-delay: 1.5s; }
.grid-item:nth-child(5) { animation-delay: 2s; }
.grid-item:nth-child(6) { animation-delay: 2.5s; }

.grid-logo {
    width: 60%;
    height: 60%;
    object-fit: contain;
    opacity: 0;
    transition: all 0.5s ease;
    filter: brightness(0) invert(1); /* Makes the logo white */
}

.grid-item:nth-child(1) .grid-logo { animation: logoAppear 4s ease-in-out infinite 0s; }
.grid-item:nth-child(2) .grid-logo { animation: logoAppear 4s ease-in-out infinite 0.5s; }
.grid-item:nth-child(3) .grid-logo { animation: logoAppear 4s ease-in-out infinite 1s; }
.grid-item:nth-child(4) .grid-logo { animation: logoAppear 4s ease-in-out infinite 1.5s; }
.grid-item:nth-child(5) .grid-logo { animation: logoAppear 4s ease-in-out infinite 2s; }
.grid-item:nth-child(6) .grid-logo { animation: logoAppear 4s ease-in-out infinite 2.5s; }

@keyframes gridPulse {
    0%, 100% { 
        background: rgba(137, 213, 228, 0.1);
        transform: scale(1);
    }
    50% { 
        background: rgba(137, 213, 228, 0.3);
        transform: scale(1.05);
    }
}

@keyframes logoAppear {
    0%, 100% { 
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    25%, 75% { 
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.1) rotate(2deg);
    }
}

/* Invest Section */
.invest {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-charcoal) 100%);
    position: relative;
}

.invest-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.invest-form-container {
    background: rgba(24, 24, 43, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(137, 213, 228, 0.1);
}

.invest-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--cold-white);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 1rem;
    background: rgba(137, 213, 228, 0.05);
    border: 1px solid rgba(137, 213, 228, 0.2);
    border-radius: 10px;
    color: var(--cold-white);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--spark-cyan);
    background: rgba(137, 213, 228, 0.1);
    box-shadow: 0 0 20px rgba(137, 213, 228, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--steel-silver);
}

.submit-button {
    background: var(--steel-silver);
    color: var(--dark-charcoal);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    background: var(--gunmetal-gray);
    color: var(--cold-white);
    box-shadow: 0 20px 40px rgba(87, 92, 102, 0.3);
}

.submit-spark {
    width: 16px;
    height: 16px;
    background: var(--dark-charcoal);
    border-radius: 50%;
    animation: sparkPulse 2s ease-in-out infinite;
}

.invest-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(24, 24, 43, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(137, 213, 228, 0.1);
}

.info-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--spark-cyan);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    color: var(--steel-silver);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--spark-cyan);
    font-size: 0.8rem;
}

.info-list ol {
    counter-reset: item;
    list-style: none;
    padding: 0;
}

.info-list ol li {
    counter-increment: item;
    color: var(--steel-silver);
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.info-list ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    color: var(--spark-cyan);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--pure-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(137, 213, 228, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-helm {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-helm-crest {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 9px;
    background: var(--cold-white);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.footer-helm-body {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 20px;
    background: var(--cold-white);
    border-radius: 12px 12px 6px 6px;
}

.footer-helm-visor {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 6px;
    background: var(--dark-charcoal);
    border-radius: 3px;
}

.footer-helm-wings {
    position: absolute;
    top: 12px;
    width: 100%;
    height: 16px;
}

.footer-wing-left, .footer-wing-right {
    position: absolute;
    width: 12px;
    height: 16px;
    background: var(--cold-white);
}

.footer-wing-left {
    left: -12px;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

.footer-wing-right {
    right: -12px;
    clip-path: polygon(100% 0%, 0% 50%, 100% 100%);
}

.footer-logo-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cold-white);
    letter-spacing: 1px;
}

.footer-tagline {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--spark-cyan);
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: var(--steel-silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--spark-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(137, 213, 228, 0.1);
}

.footer-bottom p {
    color: var(--steel-silver);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content,
    .prytaneum-content,
    .invest-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-helm {
        width: 150px;
        height: 150px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
} 