:root {
    --navy: #0a192f;
    --navy-light: #112240;
    --navy-lighter: #1b3358;
    --light-grey: #f0f2f5; 
    --grey-darker: #e2e8f0; /* For quote backgrounds */
    --gold: #d4af37;
    --gold-dim: #b3932d;
    --orange: #ff8c00;
    --orange-hover: #e07b00;
    --white: #ffffff;
    --slate: #8892b0;
    --text-dark: #0a192f;
    --text-quote: #334155; /* Dark grey for quotes */
}

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

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--light-grey);
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

/* --- Utility --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.light-bg {
    background-color: var(--light-grey);
    color: var(--text-dark);
}

.light-bg h2, .light-bg h3 {
    color: var(--navy);
}

.dark-bg {
    background-color: var(--navy);
    color: var(--slate);
}

.dark-bg h2, .dark-bg h3, .dark-bg h4 {
    color: var(--white);
}

.highlight { color: var(--gold); }
.highlight-dark { color: var(--navy); }
.text-orange { color: var(--orange); }
.text-center { text-align: center; }
.section-intro { max-width: 700px; margin: 0 auto 40px; text-align: center;}

.btn {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.full-width-btn { width: 100%; }

/* --- Header --- */
header {
    background: var(--navy);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--navy-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-links a:hover { color: var(--gold); }

.apply-btn {
    color: var(--orange) !important;
    border: 2px solid var(--orange);
    padding: 8px 15px;
    border-radius: 4px;
}
.apply-btn:hover {
    background: var(--orange);
    color: var(--white) !important;
}

/* --- Hamburger Menu --- */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--white);
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--navy);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 1px solid var(--navy-light);
    }

    .nav-links.active { left: 0; }
    .nav-links li { margin: 16px 0; }
}


/* --- Hero Section --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(10, 25, 47, 0.9), var(--navy)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--slate);
}

/* --- Hook Bar Styling --- */
.hook-bar {
    border-bottom: 2px solid var(--gold);
    padding: 60px 0;
    text-align: center;
}

.hook-content h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hook-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
}

/* --- NEW: Grey Quote Divider Styling --- */
.grey-quote {
    padding: 60px 0;
    text-align: center;
    background-color: var(--grey-darker);
    border-top: 1px solid #cbd5e1;
    border-bottom: 1px solid #cbd5e1;
}

.grey-quote blockquote {
    font-size: 1.8rem; /* Bigger size */
    color: var(--text-quote); /* Dark Grey */
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.4;
}

.grey-quote cite {
    font-size: 1rem;
    color: var(--orange); /* Orange for the author name */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* --- General Section Styling --- */
.section { padding: 100px 0; }

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-img {
    width: 100%;
    border-radius: 8px;
    border: 2px solid var(--gold-dim);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* --- Network Diagram --- */
.diagram-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.node {
    background: var(--navy-light);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid var(--navy-lighter);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    color: var(--slate);
}

.node:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.member-node h4 { color: var(--white); margin-bottom: 10px;}
.member-node p { font-size: 0.9rem; }

.hub-node {
    background: var(--navy-lighter);
    border: 2px solid var(--gold);
    padding: 40px 20px;
    z-index: 2;
}
.hub-node h3 { color: var(--gold); margin-bottom: 10px; }

.icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }

.connector-arrow {
    font-size: 3rem;
    color: var(--orange);
    font-weight: bold;
}

.outcome-container {
    grid-column: 1 / span 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.connector-line-down {
    height: 50px;
    width: 4px;
    background: linear-gradient(to bottom, var(--gold), var(--orange));
    margin-bottom: 20px;
}

.outcome-node {
    background: linear-gradient(145deg, var(--navy-light), var(--navy-lighter));
    border: 2px solid var(--orange);
    max-width: 600px;
}
.outcome-node h4 { color: var(--orange); }

/* --- Scenarios Section --- */
.white-card {
    background: var(--white);
    padding: 40px;
    border-top: 3px solid var(--orange);
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    color: var(--text-dark);
}

.white-card h3 { color: var(--navy); font-size: 1.3rem; }
.white-card strong { color: var(--orange); }

/* --- Rules Section --- */
.rules-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.rule-item {
    background: var(--navy-light);
    padding: 35px;
    border-top: 4px solid var(--gold);
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    border-radius: 8px;
}
.rule-item h4 { color: var(--white); }

/* --- Application Form --- */
.dark-form-container {
    background: var(--navy);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--navy-lighter);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: var(--slate); 
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full-width { grid-column: span 2; }

.form-group { margin-bottom: 15px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--navy-light);
    border: 2px solid var(--navy-lighter);
    border-radius: 6px;
    color: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: #061121;
}

/* --- Footer --- */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--navy-lighter);
    font-size: 0.9rem;
}

footer a { color: var(--gold); }

/* --- Responsive Styling --- */
@media (max-width: 900px) {
    .diagram-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .connector-arrow.right { display: none; }
    
    .member-node::after, .hub-node::after {
        content: '↓';
        display: block;
        font-size: 2rem;
        color: var(--orange);
        margin-top: 20px;
    }
    
    .hub-node { order: -1; }
    .outcome-container { grid-column: span 1; }
    .connector-line-down { display: none; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hook-content h2 { font-size: 1.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
    .form-wrapper { padding: 30px 20px; }
    .grey-quote blockquote { font-size: 1.4rem; }
}

.og
{
    display: none;
}