@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
    --gold: #D4AF37;
    --orange: #D4AF37;
    --orange-light: #E8C860;
    --orange-dark: #B8962D;
    --dark: #0D0D0D;
    --dark-secondary: #1A1A1A;
    --dark-card: #1F1F1F;
    --gray-900: #262626;
    --gray-700: #404040;
    --gray-500: #737373;
    --gray-300: #A3A3A3;
    --gray-100: #E5E5E5;
    --white: #FFFFFF;
    --accent-blue: #3B82F6;
    --success: #22C55E;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--white);
    background-color: var(--dark);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

header {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(13, 13, 13, 0.95) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    padding: 0 60px;
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 100px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-home {
    display: none;
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

nav a {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: 8px;
    transition: all 0.25s ease;
    display: block;
    position: relative;
    white-space: nowrap;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.25s ease;
    border-radius: 1px;
}

nav a:hover {
    color: var(--white);
    background: rgba(212, 175, 55, 0.08);
}

nav a:hover::after {
    width: 20px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    padding: 120px 48px 80px;
    gap: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 80%;
    height: 100%;
    background: url('../images/hero.png') center/cover no-repeat;
    opacity: 0.4;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 10% 100%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--dark) 30%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-content p {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 1), 0 4px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.8);
}

.hero-highlight {
    color: var(--gold);
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-metrics {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-right: 60px;
}

.hero-metric {
    text-align: right;
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
}

.hero-metric::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, var(--orange-light) 0%, var(--orange) 100%);
    border-radius: 2px;
}

.hero-metric h2 {
    font-size: clamp(1.68rem, 3.36vw, 2.52rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -2px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.6);
}

.hero-metric p {
    font-size: 1.25rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.7);
}

.hero h1 {
    font-size: clamp(2.4rem, 4.8vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: var(--white);
}

.hero h1 span {
    color: var(--orange);
}

.hero p {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--gray-300);
    max-width: 540px;
    line-height: 1.7;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.cta:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
}

.cta:hover::before {
    transform: translateX(100%);
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--gray-700);
    color: var(--white);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gray-500);
    box-shadow: none;
}

.section {
    padding: 120px 48px;
    max-width: 1440px;
    margin: 0 auto;
}

.section-dark {
    background: var(--dark-secondary);
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--white);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50px;
}

.section p {
    max-width: 720px;
    margin-bottom: 24px;
    color: var(--gray-300);
    font-size: 1.1rem;
    line-height: 1.8;
}

.metrics {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 80px 48px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.metric {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.metric h2 {
    font-size: clamp(2.4rem, 4.8vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -2px;
    line-height: 1;
}

.metric h2::after {
    display: none;
}

.metric p {
    font-size: 1.25rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    max-width: none;
    margin: 0;
}

.intro {
    text-align: center;
    padding: 140px 48px;
}

.intro h2 {
    max-width: 900px;
    margin: 0 auto 24px;
}

.intro p {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    font-size: 1.2rem;
}

.offerings {
    background: var(--dark-secondary);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
    transform: scaleY(1);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.card p {
    margin-bottom: 24px;
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.7;
}

.card .cta {
    padding: 12px 24px;
    font-size: 0.85rem;
}

.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 48px;
    text-align: center;
}

.footer-badge {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer p {
    font-size: 0.875rem;
    color: var(--gray-500);
    max-width: none;
    margin: 0 auto;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

.section ul {
    margin-top: 24px;
}

.section ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 20px;
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.7;
}

.section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--orange);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.section ul li strong {
    color: var(--white);
    font-weight: 600;
}

.angle-divider {
    width: 100%;
    height: 120px;
    background: var(--dark-secondary);
    clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
    margin-top: -1px;
}

.angle-divider-reverse {
    background: var(--dark);
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 1024px) {
    header {
        padding: 0 24px;
        height: 80px;
    }
    
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo img {
        height: 70px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(13, 13, 13, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 100px;
        border-left: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 20px;
        gap: 8px;
        border-radius: 0;
    }
    
    .mobile-home {
        display: block;
    }
    
    .mobile-home a {
        color: var(--gold);
        font-weight: 600;
    }
    
    nav a {
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 8px;
        text-align: left;
    }
    
    nav a:hover {
        background: rgba(212, 175, 55, 0.15);
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    .hero {
        padding: 120px 24px 60px;
    }
    
    .hero::before {
        opacity: 0.2;
        width: 100%;
        right: 0;
        clip-path: none;
    }
    
    .hero::after {
        background: linear-gradient(180deg, var(--dark) 0%, rgba(13,13,13,0.8) 50%, var(--dark) 100%);
    }
    
    .section {
        padding: 80px 24px;
    }
    
    .metrics {
        padding: 60px 24px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .metric {
        padding: 24px;
    }
    
    .metric h2 {
        font-size: 3rem;
    }
    
    .metric p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    header {
        height: 70px;
        padding: 0 16px;
        width: 100%;
        box-sizing: border-box;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(10, 10, 10, 0.98);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
    }
    
    .logo img {
        height: 60px;
    }
    
    nav {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(13, 13, 13, 0.98);
    }
    
    .hero::before,
    .hero::after {
        will-change: auto;
        transform: translateZ(0);
    }
    
    .hero-metric {
        transition: opacity 0.8s ease;
    }
    
    header .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-toggle {
        position: relative;
        z-index: 1002;
        flex-shrink: 0;
    }
    
    nav {
        padding-top: 80px;
    }
    
    nav a {
        font-size: 0.9rem;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    .hero {
        min-height: 100vh;
        padding: 100px 20px 60px;
        flex-direction: column;
    }
    
    .hero::before {
        opacity: 0.7;
    }
    
    .hero-club::before,
    .hero-federation::before,
    .hero-investor::before,
    .hero-architects::before {
        opacity: 0.9;
    }
    
    .page-subtitle {
        display: none;
    }
    
    .desktop-only {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: left;
    }
    
    .hero-content-left {
        text-align: left;
    }
    
    .hero-content-left h1,
    .hero-content-left p {
        text-align: left;
        margin-left: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
        text-align: left;
    }
    
    .hero p {
        font-size: 1rem;
        text-align: left;
        margin-left: 0;
    }
    
    .hero-metrics {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        min-height: 100px;
        padding: 30px 0 0 0;
        margin-top: 20px;
    }
    
    .hero-metric {
        text-align: center;
        padding: 12px 16px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-metric::after {
        display: none;
    }
    
    .hero-metric h2 {
        font-size: 2.38rem;
        letter-spacing: -1px;
    }
    
    .hero-metric p {
        font-size: 1.125rem;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .section h2 {
        font-size: 2.625rem;
    }
    
    .section p {
        font-size: 1rem;
    }
    
    .cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }
    
    .card {
        padding: 28px 24px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .metric h2 {
        font-size: 3rem;
    }
    
    .metric p {
        font-size: 1rem;
    }
    
    .intro {
        padding: 80px 20px;
    }
    
    .intro h2 {
        font-size: 2.625rem;
    }
    
    .intro p {
        font-size: 1rem;
    }
    
    .cta {
        padding: 14px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .footer {
        padding: 40px 20px;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
    header {
        padding: 12px 12px;
    }
    
    header .container {
        width: 100%;
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo img {
        height: 55px;
    }
    
    .nav-toggle {
        position: relative;
        z-index: 1002;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        margin-left: 8px;
    }
    
    nav ul {
        gap: 2px;
        padding: 4px;
    }
    
    nav a {
        padding: 5px 8px;
        font-size: 0.65rem;
    }
    
    .hero {
        padding: 120px 16px 40px;
    }
    
    .hero h1 {
        font-size: 2.625rem;
        margin-bottom: 16px;
    }
    
    .hero-content-left {
        text-align: left;
    }
    
    .hero-content-left h1,
    .hero-content-left p {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .section {
        padding: 48px 16px;
    }
    
    .section h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .gold-headline,
    .gold-headline-small {
        text-align: left;
        font-size: 1.5rem !important;
    }
    
    .section ul li {
        padding-left: 24px;
        font-size: 0.95rem;
    }
    
    .section ul li::before {
        width: 12px;
        height: 12px;
        top: 6px;
    }
    
    .card {
        padding: 24px 20px;
    }
    
    .card h3 {
        font-size: 1.1rem;
    }
    
    .card p {
        font-size: 0.9rem;
    }
    
    .metrics {
        padding: 48px 16px;
    }
    
    .metric {
        padding: 20px;
    }
    
    .metric h2 {
        font-size: 2.625rem;
    }
    
    .metric p {
        font-size: 0.95rem;
    }
    
    .intro {
        padding: 60px 16px;
    }
    
    .footer p {
        font-size: 0.8rem;
    }
}

/* iPhone SE and very small devices */
@media (max-width: 375px) {
    header {
        padding: 10px 10px;
    }
    
    header .container {
        width: 100%;
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }
    
    .logo {
        flex-shrink: 1;
        min-width: 0;
    }
    
    .logo img {
        height: 45px;
        max-width: 100%;
    }
    
    .nav-toggle {
        position: relative;
        z-index: 1002;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin-left: 4px;
    }
    
    .nav-toggle span {
        width: 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-700);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}

::selection {
    background: var(--orange);
    color: var(--white);
}

/* Proposition Section Styles */
.proposition-section {
    text-align: center;
}

.proposition-section > p {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 3rem;
}

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

.proposition-item {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.proposition-item h3 {
    color: var(--orange);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.proposition-item p {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .proposition-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .proposition-item {
        padding: 1.5rem;
    }
}

/* Media Grid Styles */
.media-grid-section {
    padding: 80px 60px;
    max-width: 1440px;
    margin: 0 auto;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.media-card {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.media-card-image {
    width: 100%;
    background: #fff;
}

.media-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.media-card:hover .media-card-image img {
    transform: scale(1.05);
}

.media-card-content {
    padding: 1.5rem;
}

.media-card-content h3 {
    color: var(--orange);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.media-card-content p {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.media-source {
    display: inline-block;
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1200px) {
    .media-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .media-grid-section {
        padding: 60px 30px;
    }
}

@media (max-width: 600px) {
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .media-grid-section {
        padding: 40px 20px;
    }
    
}

/* Expert Team Page Styles */
.compact-section {
    padding: 50px 60px;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.two-column .column h2 {
    color: var(--orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.two-column .column p {
    color: var(--gray-300);
    line-height: 1.7;
}

.section-intro {
    color: var(--gray-300);
    margin-bottom: 2rem;
    max-width: 900px;
}

.expert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.expert-card {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 10px;
    padding: 1.25rem;
}

.expert-card h3 {
    color: var(--orange);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.expert-card p {
    color: var(--gray-300);
    font-size: 0.9rem;
    line-height: 1.5;
}

.expert-card.numbered {
    position: relative;
    padding-top: 2.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.expert-card.numbered:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.expert-number {
    position: absolute;
    top: -12px;
    left: 1.25rem;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--orange) 0%, #c9a227 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.4);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.principle-item {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 8px;
    padding: 1rem;
    color: var(--gray-300);
    font-size: 0.9rem;
    line-height: 1.5;
}

.principle-item strong {
    color: var(--orange);
    display: block;
    margin-bottom: 0.25rem;
}

.cta-section {
    text-align: center;
    background: var(--dark-secondary);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cta-section h2 {
    color: var(--orange);
}

.cta-section p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .expert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .principles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .compact-section {
        padding: 40px 20px;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expert-grid {
        grid-template-columns: 1fr;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
}

/* Value Leak Section Styles */
.value-leak-section {
    text-align: center;
    background: var(--dark-secondary);
}

.value-leak-section h2 {
    margin-bottom: 1rem;
}

.value-leak-section .section-subtitle {
    font-size: 1.3rem;
    color: var(--gray-100);
    margin-bottom: 0.5rem;
    max-width: 100%;
}

.value-leak-section .section-intro-text {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.value-leak-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    counter-reset: risk-counter;
    padding-top: 1.5rem;
}

.value-leak-card {
    background: linear-gradient(145deg, var(--dark-card) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    transition: all 0.4s ease;
    text-align: left;
    counter-increment: risk-counter;
}

.value-leak-card::before {
    display: none;
}

.value-leak-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.1);
}


.value-leak-icon {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.value-leak-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    line-height: 1.35;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 0.75rem;
}

.value-leak-card p {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.value-leak-conclusion {
    font-size: 1.15rem;
    color: var(--orange);
    font-weight: 500;
    margin: 0 auto;
    max-width: 700px;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2rem;
}

@media (max-width: 1024px) {
    .value-leak-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .value-leak-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-leak-card {
        padding: 2rem 1.5rem;
    }
    
    .value-leak-icon {
        font-size: 3rem;
    }
}

/* Opening Statement Styles */
.opening-statement {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.oftg-positioning {
    text-align: center;
    background: var(--dark-secondary);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.oftg-positioning .opening-statement {
    color: var(--orange);
    font-size: 2.625rem;
}

.oftg-positioning p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray-300);
}

.gold-headline {
    color: var(--gold) !important;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.hero-content .gold-headline {
    margin-top: 3.5rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
}

.hero-tagline {
    color: var(--gold);
    font-size: 1.25rem;
    text-align: center;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    font-style: italic;
}

.gold-headline-small {
    font-size: 1.75rem !important;
    line-height: 1.4;
}

.page-subtitle {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-content-left {
    text-align: left;
    margin-right: auto;
}

.hero-content-left h1,
.hero-content-left p {
    text-align: left;
    margin-left: 0;
}

.hero:has(.hero-content-left) {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero:has(.hero-content-left) .page-subtitle {
    text-align: left;
}

.hero-balanced h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-balanced .hero-tagline {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5px;
    color: var(--gold);
    margin-bottom: 0;
}

.positioning-subtitle {
    font-size: 1.1rem;
    color: var(--gray-300);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.value-leak-grid.four-cols {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .value-leak-grid.four-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .value-leak-grid.four-cols {
        grid-template-columns: 1fr;
    }
}

.section-intro-text {
    font-size: 1rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .opening-statement {
        font-size: 1.25rem;
    }
    
    .oftg-positioning .opening-statement {
        font-size: 1.4rem;
    }
}

/* Scenarios Section */
.scenarios-section {
    text-align: center;
}

.scenarios-section h2 {
    margin-bottom: 0.75rem;
}

.scenarios-intro {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.scenarios-section .cards {
    margin-top: 0;
}

.scenarios-section .card {
    text-align: left;
}

/* Centered Section Styles */
.centered-section {
    text-align: center;
}

.centered-section h2 {
    margin-bottom: 1.5rem;
}

.centered-section p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.centered-section .cards {
    text-align: left;
}

.centered-section .cta {
    margin-top: 2rem;
}

/* Case Study Styles */
.case-study-section {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.case-study-section:last-of-type {
    border-bottom: none;
}

.case-study-section h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--orange);
}

.case-study-section p {
    text-align: left;
    max-width: 100%;
    line-height: 1.8;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.case-study-item {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.case-study-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.case-study-item h4 {
    color: var(--gray-400);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.case-study-item p {
    color: var(--gray-200);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.case-study-item.outcome {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.08) 0%, var(--dark-card) 100%);
    border-color: rgba(212, 175, 55, 0.25);
}

.case-study-item.outcome h4 {
    color: var(--orange);
}

@media (max-width: 1024px) {
    .case-study-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .case-study-grid {
        grid-template-columns: 1fr;
    }
}

/* Page-specific hero backgrounds */
.hero-home::before {
    background: url('../images/hero-home.jpg') center/cover no-repeat;
}

.hero-club::before {
    background: url('../images/hero-club.jpg') center/cover no-repeat;
}

.hero-federation::before {
    background: url('../images/hero-federation.jpg') center/cover no-repeat;
}

.hero-investor::before {
    background: url('../images/hero-investor.jpg') center/cover no-repeat;
}

.hero-architects::before {
    background: url('../images/hero-architects.jpg') center/cover no-repeat;
}

.hero-stories::before {
    background: url('../images/hero-stories.jpg') center/cover no-repeat;
}

.hero-media::before {
    background: url('../images/hero-media.jpg') center/cover no-repeat;
}

.hero-contact::before {
    background: url('../images/hero-contact.jpg') center/cover no-repeat;
}

/* Utility color classes */
.gold {
    color: var(--gold);
}

.grey {
    color: var(--gray-400);
}

.hero h1 .grey {
    font-size: 0.5em;
    display: block;
    color: var(--gray-300);
}
