/* --- GLOBAL & NAVIGATION --- */
html, body {
    overflow-x: hidden;
    width: 100%;
    /* Removed position: relative to allow flexbox sticky footer to work */
}

/* Ensures the main content area expands to push footer down */
#main {
    display: block;
    width: 100%;
}

#mainNav {
    background-color: #ffffff !important; 
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

#navbarResponsive {
    justify-content: flex-end !important;
}

#mainNav.navbar-shrink {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

#mainNav .nav-link {
    color: #2c3e50 !important;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 10px 20px !important;
    transition: all 0.2s ease-in-out;
    border-radius: 2px;
}

#mainNav .nav-link:hover {
    color: #13c636 !important;
}

#mainNav .nav-link.active {
    color: #13c636 !important;
    font-weight: 600;
}

@font-face {
  font-family: "Hackershack Font";
  src: url("fonts/jaapokkisubtract-regular.woff") format("woff"),
       url("fonts/Jaapokkisubtract-Regular.otf") format("opentype");
}

.navbar-brand {
  font-family: 'Hackershack Font', sans-serif;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  margin-right: 0.75rem;
  height: 45px;
  transition: height 0.3s ease;
}

.navbar-brand-text {
  display: flex;
  align-items: baseline;
}

.navbar-brand-pieslice,
.navbar-brand-ventures {
  font-family: 'Hackershack Font', monospace;
  font-weight: 700;
  font-size: 1.5rem;
  color: #000;
  letter-spacing: 1px;
  transition: font-size 0.3s ease;
}

.navbar-brand-ventures {
  margin-left: 8px;
}

/* --- PREMIUM HEADER TYPOGRAPHY --- */
.masthead, .boardroom-hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important; 
    padding-top: 160px !important; 
    padding-bottom: 60px !important;
    position: relative;
}

 .boardroom-hero {
    background-color: #0a4322 !important; 
     color: #fff !important;
 }

.display-2 {
    font-size: calc(2.5rem + 3.5vw);
    line-height: 1.05;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.fw-light { font-weight: 300 !important; }
.fw-bold { font-weight: 700 !important; }

.masthead .lead {
    color: #4a4a4a !important; 
    font-weight: 400;
    line-height: 1.8;
}

.main-heading {
    font-size: clamp(2.2rem, 6vw, 3.8rem) !important;
    font-weight: 300;
    line-height: 1.1 !important;
    letter-spacing: -1px;
    margin-top: 0;
    margin-left: 0;
}

.sub-lead {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem) !important;
    line-height: 1.6;
    color: #4a4a4a !important;
    max-width: 650px;
}

.hero-tagline {
    font-size: clamp(0.85rem, 1.2vw, 1rem) !important;
    letter-spacing: 3px !important;
    margin-bottom: 0.8rem !important;
    display: block; 
    color: #13c636 !important;
    text-transform: uppercase;
}

/* --- BUTTONS --- */
.btn-outline-neon {
    color: #1a1a1a !important;
    border: 1px solid #1a1a1a !important; 
    background-color: transparent !important;
    border-radius: 0;
    padding: 12px 30px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-outline-neon:hover {
    border-color: #13c636 !important;
    background-color: #13c636 !important;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.masthead .btn-outline-neon {
    background-color: #1a1a1a !important;
    border-color: #1a1a1a !important;
    color: #13c636 !important;
}

/* --- UTILITIES & ACCENTS --- */
.text-neon-green {
    color: #13c636 !important;
    text-shadow: 0 0 8px rgba(11, 252, 17, 0.2);
}

.laser-divider {
    border: 0;
    height: 1px;
    background-color: #13c636;
    opacity: 1;
}

.portfolio-spotlight {
    background-color: #103231 !important; 
    border: none;
}

.portfolio-image-wrap img {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* --- BOARDROOM HERO SECTION --- */
.boardroom-hero .container {
    position: relative;
    z-index: 2;
}

.data-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(11, 252, 17, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 252, 17, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #13c636;
    word-wrap: break-word;
}

.hero-body-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin-top: 1.5rem;
    font-weight: 300;
}

/* --- THE FOUNDERS’ MANIFESTO --- */
.manifesto-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.manifesto-title {
    font-size: 0.9rem;
    letter-spacing: 4px;
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
}

.manifesto-content {
    font-family: 'Lato', serif;
    font-size: 1.75rem;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    font-weight: 300;
}

.manifesto-content p {
    margin-bottom: 2rem;
}

.tracking-widest {
    letter-spacing: 0.2em;
}

/* --- OUR HIGH-UTILITY THESIS --- */
.thesis-section {
    background-color: #0a1f1e;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 700;
}

.thesis-icon {
    font-size: 2.5rem;
    color: #13c636;
    display: block;
}

.thesis-card {
    padding: 20px;
    transition: transform 0.3s ease;
}

.thesis-card:hover {
    transform: translateY(-10px);
}

.text-secondary-light {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1rem;
}

.opacity-25 {
    opacity: 0.25;
}

/* --- THE SYNDICATE EDGE --- */
.syndicate-edge {
    padding: 120px 0;
}

.entry-graphic-card {
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 60px 40px;
    border-radius: 4px;
    position: relative;
    transition: all 0.4s ease;
}

.entry-graphic-card:hover {
    border-color: #13c636;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.graphic-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #888;
    margin-bottom: 10px;
}

.graphic-value {
    font-size: 4rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
}

.syndicate-edge .text-neon-green {
    color: #06d60a !important;
}

/* --- FINAL CALL-TO-ACTION --- */
.cta-section {
    background-color: #0a1f1e;
    padding: 150px 0;
    border-top: 1px solid rgba(11, 252, 17, 0.1);
}

.cta-section h2 {
    line-height: 1.2;
    letter-spacing: -2px;
}

.z-index-2 {
    z-index: 2;
}

.cta-section .btn-outline-neon {
    border-color: #13c636 !important;
    color: #13c636 !important;
    font-size: 0.9rem;
}

.cta-section .btn-outline-neon:hover {
    background-color: #13c636 !important;
    color: #000 !important;
}

/* --- PORTFOLIO LISTS --- */
.vertical-ecosystem .border-start {
    border-color: rgba(255, 255, 255, 0.1) !important;
    min-height: 30px;
}

.ecosystem-item p {
    line-height: 1.8;
    font-size: 0.9rem;
}

.x-small { font-size: 0.85rem; }

/* --- INVESTMENT LIFECYCLE --- */
.roadmap-icon-wrap {
    position: relative;
    z-index: 5;
    background-color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px; 
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
}

/* --- SYNDICATE PULSE --- */
.bg-light-soft { background-color: #f8f9fa; }
.border-neon { border: 1px solid #13c636 !important; }
.pulse-box { box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.h2 { font-size: 2rem; }

/* --- FAQ ACCORDION --- */
.border-neon-green {
    border-left: 4px solid #00FF00 !important;
}

.accordion-item {
    border-bottom: 1px solid #eee !important;
    background-color: transparent !important;
}

.accordion-button {
    color: #2c3e50 !important;
    font-weight: 600;
    padding: 1.25rem 1rem;
    background-color: transparent !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #00FF00 !important;
}

.accordion-button::after {
    filter: grayscale(1) brightness(0.5);
}

.accordion-button:not(.collapsed)::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300FF00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding-top: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.page-section {
    overflow: visible !important;
}

/* --- 1. TABLETS & MOBILE --- */
@media (max-width: 991px) {
    .masthead, .boardroom-hero {
        height: auto !important;
        min-height: auto !important; 
        padding-top: 100px !important;
        padding-bottom: 40px !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .container {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .main-heading {
        font-size: clamp(2.2rem, 8vw, 3.4rem) !important;
        margin-top: 0 !important;
        margin-bottom: 1rem !important;
    }

    .sub-lead {
        font-size: 1.15rem !important;
        max-width: 90% !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-body-text, .text-secondary-light {
        font-size: 1.2rem !important; /* Fixed: 1.7rem was too large for mobile text */
        line-height: 1.6;
    }

    .hero-tagline { 
       font-size: 0.9rem !important;
        margin-bottom: 12px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .manifesto-content {
        font-size: clamp(1.3rem, 4vw, 1.6rem) !important;
        line-height: 1.5;
        padding: 0 20px;
    }

    .manifesto-content p {
        font-size: 1.35rem !important;
        line-height: 1.5 !important;
    }
}

/* --- 2. SPECIFIC FOR MOBILE PHONES --- */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 40px;
    }
    .navbar-brand-pieslice,
    .navbar-brand-ventures {
        font-size: 1.2rem;
    }
    .masthead, .boardroom-hero {
        min-height: 60vh !important;
        padding-top: 90px !important;
    }
    
    .main-heading {
        font-size: 2.1rem !important;
        line-height: 1.2 !important;
    }

    .sub-lead {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
    }

    .hero-tagline {
        font-size: 0.8rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 8px !important;
        line-height: 1.4;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        width: 100%;
    }

    .btn-outline-neon {
        width: 100%;
        text-align: center;
    }
}

/* --- 3. EXTRA SMALL DEVICES --- */
@media (max-width: 380px) {
    .navbar-brand img {
        height: 38px;
        margin-right: 0.5rem;
    }
    .navbar-brand-pieslice,
    .navbar-brand-ventures {
        font-size: 1.1rem;
    }
    .navbar-brand-ventures {
        margin-left: 6px;
    }
}

@media (min-width: 992px) and (min-height: 1000px) {
    /* Targets tall tablets like iPad Pro */
    .page-section {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
        display: flex;
        align-items: center;
        min-height: 70vh; /* Pushes the content to take up more vertical room */
    }
}

/* --- CONTACT PAGE (Modern Professional) --- */
.page-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.form-control, textarea.form-control {
    background-color: #fcfcfc !important; /* Slight tint */
    border: 1px solid #e2e8f0 !important; /* Thin, professional border */
    border-radius: 4px !important;
    padding: 14px !important;
    font-size: 1rem;
    color: #333;
    transition: all 0.2s ease;
}

.form-control:focus, textarea.form-control:focus {
    background-color: #ffffff !important;
    border-color: #d1d5db !important;
    border-left: 4px solid #00ff41 !important; /* Subtle Neon Accent */
    box-shadow: none !important;
    outline: none;
}

.btn-send {
    background-color: #000000; /* Black for authority */
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 15px 40px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-send:hover {
    background-color: #00ff41; /* Brand green on hover */
    color: #000;
}

/* Typography for the Left Side */
.contact-title {
    font-size: 3.5rem;
    font-weight: 900; 
    line-height: 0.9;
    letter-spacing: -2px;
   /* text-transform: uppercase;*/
    color: #000;
}

.lead-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.sub-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Email Section */
.direct-inquiry {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.email-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    transition: 0.2s;
}

.email-link:hover {
    color: #00ff41; /* Neon green hover */
}

/* Matching the label style you liked */
.custom-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 8px;
}

/* Form Controls (Institutional Style) */
.form-control {
    border: 1px solid #e2e8f0 !important;
    border-radius: 4px !important;
    padding: 14px !important;
    background-color: #fcfcfc !important;
}

.form-control:focus {
    border-left: 4px solid #00ff41 !important;
    background-color: #fff !important;
    box-shadow: none !important;
}

.btn-send {
    background: #000;
    color: #fff;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.btn-send:hover {
    background: #00ff41;
    color: #000;
}

#contact-page-section {
    padding-top: 200px !important;
}

#contact-page-section .border-end {
    border-right-color: #f0f0f0 !important;
    border-right-width: 1px !important;
}


