/* ===== CSS RESET & VARIABLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors — Deep Navy Palette */
    --navy-900: #0F172A;
    --navy-800: #1E293B;
    --navy-700: #334155;
    --navy-600: #475569;

    --gold-100: #FEFCE8;
    --gold-200: #FFF7ED;
    --gold-300: #C5A059;
    --gold-400: #D8B978;
    --gold-500: #A8882D;
    --gold-600: #8B7024;

    /* Semantic Colors */
    --white: #FFFFFF;
    --bg-dark: #0F172A;
    --bg-light: #F8FAFC;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #334155;
    --gray-400: #475569;
    --gray-500: #475569;
    --gray-600: #94a3b8;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Transitions */
    --transition-fast: 0.1s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.4s ease;

    /* Shadows */
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-glow: none;

    /* Gradients */
    --gradient-gold: var(--gold-300);
    --gradient-gold-text: var(--white);
    --gradient-dark: var(--navy-900);

    /* Borders */
    --border-thin: 1px solid rgba(255, 255, 255, 0.08);
    --border-gold-soft: 1px solid rgba(197, 160, 89, 0.2);
    --border-thick: 2px solid rgba(255, 255, 255, 0.15);

    /* Glassmorphism */
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);

    /* Million Dollar Glows */
    --glow-gold: 0 0 30px rgba(197, 160, 89, 0.15);
    --glow-gold-intense: 0 0 50px rgba(197, 160, 89, 0.3);
    --glow-cyan: 0 0 30px rgba(0, 232, 184, 0.15);

    /* Semantic Colors */
    --primary: var(--navy-900);
    --accent: var(--gold-300);
    --navy: var(--navy-900);
    --gold: var(--gold-300);
}

/* ===== MILLION DOLLAR DESIGN SYSTEM UTILITIES ===== */
.u-glass {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
}

.u-glass-thick {
    background: rgba(15, 23, 42, 0.85) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(197, 160, 89, 0.2) !important;
}

.u-glow-gold {
    box-shadow: var(--glow-gold);
}

.u-glow-gold-hover:hover {
    box-shadow: var(--glow-gold-intense);
}

.u-neural-glow:hover {
    animation: neural-pulse 1.5s infinite;
    border-color: var(--gold-300) !important;
}

@keyframes neural-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(197, 160, 89, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

.u-grad-text-gold {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Global Utilities */
.u-text-center {
    text-align: center !important;
}

.u-mt-1 {
    margin-top: 1rem !important;
}

.u-mt-2 {
    margin-top: 2rem !important;
}

.u-h-40 {
    height: 40px !important;
}

.u-my-2 {
    margin: 2rem 0 !important;
}

.u-my-2 {
    margin: 2rem 0 !important;
}

.u-overflow-x {
    overflow-x: auto !important;
}

.u-mt-4 {
    margin-top: 4rem !important;
}

.u-mt-05 {
    margin-top: 0.5rem !important;
}

.u-mb-05 {
    margin-bottom: 0.5rem !important;
}

.u-my-05 {
    margin: 0.5rem 0 !important;
}

.u-mb-1 {
    margin-bottom: 1rem !important;
}

.u-mb-2 {
    margin-bottom: 2rem !important;
}

.u-mb-4 {
    margin-bottom: 4rem !important;
}

.u-fw-600 {
    font-weight: 600 !important;
}

.u-fw-700 {
    font-weight: 700 !important;
}

.u-gold {
    color: var(--gold-300) !important;
}

.u-red {
    color: #ef4444 !important;
}

.u-green {
    color: #22c55e !important;
}

.u-ls-1 {
    letter-spacing: 1px !important;
}

.u-ls-2 {
    letter-spacing: 2px !important;
}

.u-block {
    display: block !important;
}

.u-flex {
    display: flex !important;
}

.u-items-start {
    align-items: flex-start !important;
}

.u-items-center {
    align-items: center !important;
}

.u-justify-center {
    justify-content: center !important;
}

.u-gap-1 {
    gap: 1rem !important;
}

.u-gap-15 {
    gap: 1.5rem !important;
}

.u-list-none {
    list-style: none !important;
    padding: 0 !important;
}

.u-mr-05 {
    margin-right: 0.5rem !important;
}

.u-mb-05 {
    margin-bottom: 0.5rem !important;
}

.u-inline-block {
    display: inline-block !important;
}

.u-relative {
    position: relative !important;
}

.u-z-2 {
    z-index: 2 !important;
}

.u-w-full {
    width: 100% !important;
}

.u-fs-07 {
    font-size: 0.7rem !important;
}

.u-fs-08 {
    font-size: 0.8rem !important;
}

.u-fs-09 {
    font-size: 0.9rem !important;
}

.u-fs-11 {
    font-size: 1.1rem !important;
}

.u-mt-05 {
    margin-top: 0.5rem !important;
}

.u-color-dim {
    color: #64748b !important;
}

.u-bg-gold-10 {
    background: rgba(197, 160, 89, 0.1) !important;
}

/* Global Header Stacking System */
.system-status-bar {
    background: rgba(2, 6, 23, 0.98);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    color: #fff;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    z-index: 10002;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .system-status-bar {
        display: none;
        /* Hide top utility bar on mobile to prioritize brand logo and ticker */
    }
}

/* Ticker + navbar position overrides removed — handled in the
   "BITCOIN NEWS TICKER" section (~line 5414).  Only the mobile-nav
   z-index is kept here because it ships before the ticker block. */

.mobile-nav {
    z-index: 11000;
}

/* Cinematic Transitions */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Authority Ribbon - Premium Redesign */
.authority-ribbon {
    background: linear-gradient(90deg, #0a0f1d 0%, #0f172a 50%, #0a0f1d 100%);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding: 0.8rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.authority-track {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
}

.authority-item {
    font-family: 'JetBrains Mono', 'SF Mono', monospace;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.3s ease;
}

.authority-item svg {
    color: var(--gold-300);
    opacity: 0.8;
}

.authority-item:hover {
    color: #fff;
}

.floating-cta {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Premium Utility Classes */
.u-hero-subpage {
    position: relative;
    padding: 10rem 0 6rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.u-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.65) 100%);
    z-index: 1;
}

.u-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(197, 160, 89, 0.4);
    background: rgba(15, 23, 42, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.u-video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.u-video-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
}

.u-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(197, 160, 89, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.4);
}

.u-video-container:hover .u-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--gold-300);
}

/* Scrollbar Fixes */
@supports (scrollbar-width: thin) {
    * {
        scrollbar-width: thin;
        scrollbar-color: var(--gold-300, #C5A059) var(--navy-900, #0F172A);
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--gold-300);
    border-radius: 10px;
}


.floating-cta:hover {
    transform: scale(1.05) translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(197, 160, 89, 0.4) !important;
}

/* ===== STRATEGY BRIEFING SECTION ===== */
.briefing-section {
    background: #F8FAFC;
    padding: 6rem 0;
}

.briefing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.briefing-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.briefing-subtitle {
    color: #64748B;
    font-size: 1.1rem;
}

.briefing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.briefing-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.briefing-step-item {
    display: flex;
    gap: 1.5rem;
}

.briefing-step-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.briefing-step-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.briefing-step-desc {
    color: #64748B;
}

.briefing-form-card {
    background: #ffffff;
    padding: 2.5rem;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
}

.briefing-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.briefing-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
    border-radius: 4px;
    font-family: var(--font-primary);
}

.briefing-btn {
    width: 100%;
    background: var(--accent);
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-base);
}

.briefing-btn:hover {
    background: var(--gold-400);
}

@media (max-width: 900px) {
    .briefing-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .briefing-form-card {
        padding: 1.5rem;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-300);
    background: var(--navy-900);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

strong {
    color: var(--gold-300);
    font-weight: 600;
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FFFFFF;
    border-bottom: 1px solid var(--navy-600);
    padding: var(--space-sm) 0;
    transition: all var(--transition-base);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: transform var(--transition-base);
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--gold-300);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy-900);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--transition-base);
}

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

/* Client Portals Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-dropdown>a::after {
    content: '▾';
    font-size: 0.65rem;
    opacity: 0.5;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover>a::after {
    transform: rotate(-180deg);
    opacity: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 220px;
    background: rgba(15, 23, 42, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 12px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    z-index: 1002;
    list-style: none;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(197, 160, 89, 0.25);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
    list-style: none;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 1.25rem;
    color: #CBD5E1 !important;
    font-size: 0.85rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    color: var(--gold-300) !important;
    background: rgba(197, 160, 89, 0.08);
}

.nav-dropdown-menu .dd-icon {
    font-size: 1rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

/* Mobile nav portals accordion */
.mobile-nav-portals {
    width: 100%;
}

.mobile-nav-portals>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-portals>a::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--gold-300);
    transition: transform var(--transition-base);
}

.mobile-nav-portals.open>a::after {
    content: '−';
    transform: rotate(180deg);
}

.mobile-nav-sub {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(30, 41, 59, 0.3);
    padding: 0 var(--space-md);
}

.mobile-nav-portals.open .mobile-nav-sub {
    max-height: 500px;
    padding: var(--space-sm) var(--space-md);
}

.mobile-nav-sub a {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    opacity: 0.8;
    display: block;
}

/* Hamburger menu — iOS Safari bulletproof */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    /* iOS Safari fixes */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Minimum 44x44 touch target (Apple HIG) */
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    /* Prevent iOS tap highlight */
    -webkit-tap-highlight-color: transparent;
    /* Ensure it's always tappable */
    touch-action: manipulation;
    position: relative;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy-900);
    transition: all 0.3s ease;
    border-radius: 2px;
    /* Prevent collapsing */
    flex-shrink: 0;
}

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

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

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

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 80px 20px;
    overflow-y: auto;
    /* iOS Safari momentum scrolling */
    -webkit-overflow-scrolling: touch;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--navy-900);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    transition: color var(--transition-base);
}

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

/* Mobile Nav — Schedule CTA Button */
.mobile-nav-cta {
    display: block !important;
    margin-top: 1rem;
    padding: 0.85rem 1.5rem;
    background: var(--gold-300);
    color: var(--navy-900) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.mobile-nav-cta:hover {
    background: var(--gold-400, #d4a03a);
    color: var(--navy-900) !important;
    transform: translateY(-1px);
}

.nav-cta {
    display: none;
    /* Hidden — removed per request */
}

/* ===== BUTTONS ===== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1.1rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--gold-300);
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-base);
    overflow: hidden;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gold-300);
    color: #FFFFFF;
    border-color: var(--gold-300);
}

.btn-primary::after {
    display: none;
}

.btn-primary:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-full {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) var(--space-md);
    padding-top: calc(var(--space-3xl) + 40px);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.7) 100%),
        url('images/hero-bg.jpg') center/cover no-repeat;
    z-index: -1;
}

.hero-bg::after {
    display: none;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    margin-bottom: var(--space-md);
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 0.2em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.title-accent {
    display: block;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    color: var(--gold-300);
    letter-spacing: -0.03em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--gray-300);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.9;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-400);
    max-width: 740px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--gray-500);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: bounce 2.5s infinite;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--gold-300);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.section-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
    color: var(--white);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--gold-400);
    opacity: 0.9;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    display: block;
}

/* ===== WHY SECTION ===== */
.why-section {
    background: var(--navy-800);
    border-bottom: 1px solid var(--navy-600);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-lg);
    border-left: 1px solid var(--navy-600);
}

.why-card {
    background: transparent;
    border: 1px solid var(--navy-600);
    border-left: none;
    border-radius: 0;
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: none;
}

.why-card:hover {
    transform: none;
    background: var(--white);
    border-color: var(--white);
    color: var(--navy-900);
}

.why-card:hover .card-title,
.why-card:hover .card-text {
    color: var(--navy-900);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 0;
    margin-bottom: var(--space-md);
    color: var(--gold-300);
    position: relative;
    border: 1px solid var(--gold-300);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.card-text {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--navy-900);
    border-bottom: 1px solid var(--navy-600);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    border: 1px solid var(--navy-600);
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.service-card {
    position: relative;
    background: transparent;
    border: 1px solid var(--navy-600);
    margin: -1px 0 0 -1px;
    border-radius: 0;
    padding: var(--space-lg);
    transition: all var(--transition-base);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    background: var(--gold-300);
    border-color: var(--gold-300);
    transform: none;
    box-shadow: none;
    z-index: 1;
}

.service-card:hover .service-title,
.service-card:hover .service-text,
.service-card:hover .service-number {
    color: #FFFFFF;
    opacity: 1;
}

.service-card:hover::before {
    display: none;
}

.service-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--navy-600);
    background: none;
    -webkit-text-fill-color: initial;
    opacity: 1;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--white);
    letter-spacing: -0.01em;
}

.service-text {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--navy-900);
    position: relative;
    padding-bottom: var(--space-3xl);
}

.contact-section::before {
    display: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 0.8fr 1fr;
        align-items: start;
    }
}

.contact-info {
    padding-top: var(--space-lg);
    text-align: center;
}

.contact-info .section-title {
    text-align: center;
    font-size: 2.5rem;
}

.contact-subtitle {
    color: var(--gray-400);
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    font-weight: 300;
}

.process-title {
    font-size: 0.9rem;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    left: 17px;
    width: 1px;
    height: calc(100% - 20px);
    background: rgba(0, 0, 0, 0.1);
}

.step-number {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--gold-300);
    color: var(--gold-300);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 0;
    z-index: 1;
    box-shadow: none;
}

.step-content {
    color: var(--gray-300);
    line-height: 1.6;
    padding-top: 4px;
    font-size: 1.05rem;
}

/* ===== FORM STYLES ===== */
.contact-form-wrapper {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: 1px solid var(--navy-600);
    border-radius: 0;
    padding: var(--space-xl);
    box-shadow: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    margin-left: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    padding: 1rem 1.25rem;
    background: transparent;
    border: 1px solid var(--navy-600);
    border-radius: 0;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold-300);
    background: transparent;
    box-shadow: none;
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
    background: var(--navy-800);
    border-bottom: 1px solid var(--navy-600);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    max-max-width: 100%; width: auto;;
    margin: 0 auto;
    border: 1px solid var(--navy-600);
}

.leadership-card {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: 1px solid var(--navy-600);
    margin: -1px 0 0 -1px;
    border-radius: 0;
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.leadership-card:hover {
    border-color: var(--navy-600);
    background: var(--navy-800);
    transform: none;
    z-index: 1;
}

.leadership-card:hover .partner-name,
.leadership-card:hover .partner-role,
.leadership-card:hover .partner-bio,

/* New Partner Image Styles */
.partner-image-wrapper-new {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.partner-image-new {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 450px;
    /* Prevent over-sized vertical images */
    border: 1px solid var(--navy-600);
}

.leadership-card:hover .partner-value-prop {
    color: var(--white);
}

.partner-image-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 0;
    margin: 0 auto var(--space-md);
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: 1px solid var(--navy-600);
}

.partner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
    border: none;
    filter: grayscale(100%);
    transition: filter var(--transition-base);
}

.leadership-card:hover .partner-image {
    filter: grayscale(0%);
}

.partner-name {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 4px;
}

.partner-role {
    font-size: 0.9rem;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.partner-value-prop {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    font-weight: 700;
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--gold-300);
}

.partner-bio,
.partner-desc {
    font-size: 1rem;
    color: var(--gray-300);
    line-height: 1.7;
    font-style: italic;
}

/* ===== PRESS / MARQUEE SECTION ===== */
.press-section {
    padding: var(--space-lg) 0;
    background: var(--navy-800);
    border-bottom: 1px solid var(--navy-600);
    overflow: hidden;
}

.press-title {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--navy-800), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--navy-800), transparent);
}

.marquee-track {
    display: flex;
    gap: var(--space-xl);
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.press-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gray-400);
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Legacy — keep for backwards compat */
.press-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
    opacity: 0.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-900);
    border-top: 1px solid var(--navy-800);
    padding: var(--space-2xl) 0 var(--space-xl);
    color: var(--gray-400);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: invert(1) hue-rotate(180deg);
    mix-blend-mode: screen;
    margin-bottom: 0.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Utility: height override */
.u-height-40 {
    height: 40px !important;
}

.footer-brand-col {
    text-align: center;
}

.footer a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color var(--transition-base);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    align-items: start;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-col a {
    color: var(--gray-400, #94a3b8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
    display: block;
}

.footer-links-col a:hover {
    color: var(--gold-300);
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-brand-col .logo-icon {
    color: var(--gold-300);
}

.footer-brand-col .logo-text {
    color: var(--navy-900);
}

.footer-brand-col .footer-tagline {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-md);
    line-height: 1.6;
    color: var(--gray-400);
}

.footer-col-title {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-300);
    margin-bottom: var(--space-md);
}

.footer-col-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-col-links li a {
    font-size: 0.95rem;
    color: #94a3b8;
}

.footer-col-links li a:hover {
    color: var(--gold-300);
}

.footer-bottom {
    border-top: 1px solid rgba(203, 213, 225, 0.15);
    padding-top: var(--space-md);
    text-align: center;
}

.footer-copyright {
    color: #64748b;
    font-size: 0.75rem;
}

/* Legacy footer (hidden now) */
.footer-content {
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
    opacity: 0.8;
}

/* ===== NEWSLETTER POPUP MODAL ===== */
.newsletter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.newsletter-overlay.active {
    display: flex;
}

.newsletter-modal {
    background: #FFFFFF;
    border: 1px solid var(--navy-600);
    padding: var(--space-xl);
    max-width: 460px;
    width: 100%;
    position: relative;
    text-align: center;
    animation: fadeInUp 0.4s ease-out;
}

.newsletter-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-base);
}

.newsletter-close:hover {
    color: var(--white);
}

.newsletter-modal h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--white);
}

.newsletter-modal p {
    color: var(--gray-400);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.newsletter-form input {
    padding: 0.9rem 1rem;
    border: 1px solid var(--navy-600);
    border-radius: 0;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--white);
    background: transparent;
    transition: border-color var(--transition-base);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold-300);
}

.newsletter-form button {
    padding: 0.9rem 1.5rem;
    background: var(--gold-300);
    color: var(--navy-900) !important;
    border: 1px solid var(--gold-300);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-base);
}

.newsletter-form button:hover {
    background: transparent;
    color: var(--gold-300);
}

/* ===== PAGE HEADER (for sub-pages) ===== */
.page-header {
    padding: calc(var(--space-3xl) + 60px) var(--space-md) var(--space-2xl);
    background: var(--navy-800);
    border-bottom: 1px solid var(--navy-600);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.page-header p {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Sub-page content area */
.page-content {
    padding: var(--space-2xl) 0;
}

.page-content h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.page-content p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    max-width: 800px;
}

.page-content .container {
    max-width: 900px;
}

/* Testimonial cards for Success Stories */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}



.testimonial-card {
    border: 1px solid var(--navy-600);
    padding: var(--space-lg);
    background: var(--navy-800);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--gray-200);
    /* Lighter for better contrast */
    line-height: 1.7;
    margin-bottom: var(--space-sm);
    font-size: 1.05rem;
}

.testimonial-card cite {
    display: block;
    color: var(--gold-300);
    /* Brighter gold */
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-max-width: 100%; width: auto;) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
        --space-2xl: 3.5rem;
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    /* Nav — force hide desktop links on mobile */
    .nav-links {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    .logo-icon {
        font-size: 1.8rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    /* Hero */
    .hero {
        padding-top: calc(var(--space-2xl) + 60px);
        padding-bottom: var(--space-2xl);
    }

    .hero-title {
        margin-bottom: var(--space-sm);
    }

    .title-line {
        font-size: 2.2rem;
    }

    .title-accent {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .section-header {
        margin-bottom: var(--space-xl);
    }

    .section-title {
        font-size: 2rem;
    }

    /* Grid stacking */
    .services-grid,
    .leadership-grid,
    .fund-intel-wrapper,
    .social-proof-grid,
    .niche-selector-grid {
        grid-template-columns: 1fr !important;
        border-right: none;
    }

    .niche-card .niche-expanded div[style*="display: flex"] {
        flex-direction: column;
    }

    .service-card,
    .leadership-card {
        margin-right: 0;
        border-right: 1px solid var(--navy-600);
    }

    /* Center text */
    .hero-content,
    .section-header,
    .leadership-card,
    .service-card,
    .contact-info,
    .footer-content {
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .contact-info .section-title {
        text-align: center;
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: var(--space-lg);
    }

    .process-steps {
        max-width: 400px;
        margin: 0 auto;
        text-align: left;
    }

    .step {
        justify-content: flex-start;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }

    .footer-brand-col {
        margin-bottom: var(--space-sm);
    }

    .footer-logo-img {
        height: 40px;
        max-width: 160px;
    }

    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== STRATEGIES PAGE ===== */
.content-section {
    padding: var(--space-2xl) 0;
}

.content-intro {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-400);
}

.content-intro strong {
    color: var(--white);
    font-weight: 700;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.strategy-card {
    background: var(--navy-800);
    border: 1px solid var(--navy-600);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.scroll-line {
    position: absolute;
    bottom: 40px;
    left: 50%;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold-300), transparent);
    animation: scrollLoop 2s infinite;
}

@media (max-width: 768px) {
    .scroll-line {
        display: none;
        /* Hide on mobile to prevent overlap */
    }
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-300), var(--gold-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.strategy-card:hover::before {
    transform: scaleX(1);
}

.strategy-card:hover {
    border-color: var(--gold-300);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.strategy-icon {
    font-size: 1.6rem;
    color: var(--gold-300);
    margin-bottom: var(--space-sm);
}

.strategy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.strategy-card p {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Philosophy Section */
.philosophy-section {
    margin-bottom: var(--space-2xl);
}

.philosophy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.philosophy-item {
    padding: var(--space-lg);
    border-left: 3px solid var(--gold-300);
    transition: all var(--transition-base);
}

.philosophy-item:hover {
    background: var(--navy-800);
    border-left-color: var(--gold-400);
}

.philosophy-number {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold-300);
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--space-xs);
}

.philosophy-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.philosophy-item p {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Download CTA */
.download-cta,
.subscribe-cta {
    margin-top: var(--space-xl);
}

.download-card,
.subscribe-card {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    padding: var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-card::before,
.subscribe-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
}

.download-card h2,
.subscribe-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #F8FAFC !important;
    margin-bottom: var(--space-sm);
}

.download-card p,
.subscribe-card p {
    color: #94A3B8 !important;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
    font-size: 1.05rem;
}

.btn-primary {
    display: inline-block;
    background: var(--gold-300);
    color: #FFFFFF !important;
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-base);
    border: 1px solid var(--gold-300);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--gold-300);
    padding: 0.8rem 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold-300);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--gold-300);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ===== NEWSLETTERS PAGE ===== */
.newsletter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

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

.newsletter-card {
    background: var(--navy-800);
    border: 1px solid var(--navy-600);
    padding: var(--space-xl);
    position: relative;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.newsletter-card:hover {
    border-color: var(--gold-300);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.newsletter-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: #FFFFFF;
    padding: 0.3rem 0.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
}

.newsletter-meta {
    margin-bottom: var(--space-sm);
}

.newsletter-date {
    color: var(--gold-300);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-300);
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.newsletter-excerpt {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.newsletter-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
    flex-grow: 1;
}

.newsletter-highlights li {
    position: relative;
    color: var(--gray-600);
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-highlights li::before {
    content: '◈';
    position: absolute;
    left: 0;
    color: var(--gold-300);
    font-size: 0.7rem;
    top: 0.15rem;
}

/* ===== WHAT WE COVER — CARD GRID ===== */
.what-we-cover-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--navy-600);
}

.cover-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cover-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 6px;
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.cover-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
    border-radius: 6px 6px 0 0;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.cover-card:hover {
    border-color: var(--gold-300);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.cover-card:hover::before {
    transform: scaleX(1);
}

.cover-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--gold-300);
}

.cover-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.cover-card-text {
    color: var(--gray-400);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* Last row — 1 card centered if odd */
.cover-cards-grid .cover-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-max-width: 100%; width: auto;) {
    .cover-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cover-cards-grid .cover-card:nth-child(4),
    .cover-cards-grid .cover-card:nth-child(5) {
        grid-column: auto;
    }

    .cover-cards-grid .cover-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .cover-cards-grid {
        grid-template-columns: 1fr;
    }

    .cover-cards-grid .cover-card:last-child:nth-child(odd) {
        max-width: 100%;
    }
}

/* Active nav link */
.nav-links a.active,
.mobile-nav a.active {
    color: var(--gold-300) !important;
}

/* ===== MOBILE RESPONSIVENESS OVERRIDES ===== */
@media (max-width: 600px) {

    /* Footer Alignment */
    .footer-grid {
        text-align: center;
        gap: var(--space-xl);
    }

    .footer-brand-col,
    .footer-col-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand-col div {
        justify-content: center;
    }

    /* Adjust Strategy/Leadership Grid Padding */
    .why-card,
    .service-card,
    .leadership-card {
        padding: var(--space-md);
    }
}

/* =========================================
   NEW HERO STYLES (Home Page Overhaul)
   ========================================= */

.hero-new {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 60px;
    min-height: 100vh;
    overflow: hidden;
    color: var(--white);
    background: #0F172A;
}

.hero-bg-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.7) 100%),
        url('images/hero-bg.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-max-width: 100%; width: auto;;
    width: 100%;
}

.hero-title-new {
    margin-bottom: var(--space-md);
}

.hero-title-new .title-line {
    color: var(--white) !important;
    /* Force white text */
    display: block;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.2em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-title-new .title-accent-new {
    display: block;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    color: var(--gold-300);
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(197, 160, 89, 0.3), 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-new {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #e2e8f0;
    margin: 0 auto 2rem;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-actions-new {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-scroll-indicator {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
    margin-top: auto;
    margin-bottom: 2rem;
    color: var(--white);
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-300), transparent);
}

/* Mission Pillars Focal Point */
.hero-mission-pillars {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2.5rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.05);
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    width: 100%;
}

.pillar-item span {
    font-size: 0.85rem;
    color: #94a3b8;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.pillar-item:hover span {
    color: var(--gold-300);
}

.pillar-item svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.pillar-item span {
    font-size: 0.85rem;
    color: #94a3b8;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero-new {
        padding-top: 120px;
        min-height: 0;
    }

    .pillar-item {
        padding: 0 1.5rem;
        gap: 0.25rem;
    }

    .pillar-item span {
        font-size: 0.8rem;
    }
}



@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Chat FAB Styles — Premium Glow */
.chat-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3), var(--glow-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.chat-fab:hover {
    transform: scale(1.1) rotate(5deg);
}

.chat-fab svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* Pulse ring animation on FAB */
.chat-fab-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--gold-500);
    animation: fabPulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes fabPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Nudge tooltip */
.chat-nudge {
    position: fixed;
    bottom: 42px;
    right: 100px;
    background: rgba(17, 24, 39, 0.95);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    border-left: 3px solid var(--gold-500);
    font-size: 0.88rem;
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: nudgeSlideIn 0.5s ease-out;
    max-width: 260px;
    line-height: 1.4;
}

.chat-nudge.show {
    display: flex;
}

@keyframes nudgeSlideIn {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.nudge-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0 0 0 4px;
    line-height: 1;
    flex-shrink: 0;
}

.nudge-close:hover {
    color: #fff;
}

/* Chat Modal Styles — Institutional Glass */
.chat-modal {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 370px;
    height: 520px;
    max-height: 70vh;
    background: rgba(15, 23, 42, 0.95);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--glow-gold);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.chat-modal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-header {
    background: linear-gradient(90deg, rgba(10, 15, 29, 0.9), rgba(15, 23, 42, 0.9));
    padding: 1rem 1.25rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

.chat-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0.9;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.15);
    opacity: 1;
    transform: scale(1.05);
}

.chat-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;

    @supports (scrollbar-width: thin) {
        scrollbar-width: thin;
        scrollbar-color: rgba(197, 160, 89, 0.2) transparent;
    }
}

.chat-message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.bot {
    background: rgba(30, 41, 59, 0.6);
    color: var(--white);
    border-bottom-left-radius: 2px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.chat-message.user {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--navy-900);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.2);
}

.chat-input-area {
    padding: 1.2rem;
    background: rgba(15, 23, 42, 0.8);
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    gap: 0.8rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.chat-input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 30px;
    outline: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.chat-input:focus {
    border-color: var(--gold-300);
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

.chat-send {
    background: var(--gold-300);
    color: var(--navy-900);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.2);
}

.chat-send:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--gold-400);
}

/* Concierge V2 — Visual-First Styles */
.chat-header-info {
    display: flex;
    flex-direction: column;
}

.chat-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header-sub {
    font-size: 0.65rem;
    opacity: 0.6;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Progress Tracker */
.chat-progress {
    display: flex;
    gap: 5px;
    align-items: center;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.progress-dot.active {
    background: var(--gold-500, #C5A059);
    box-shadow: 0 0 6px rgba(197, 160, 89, 0.5);
}

.progress-dot.done {
    background: #4ADE80;
}

/* Segment Option Buttons */
.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 4px 0;
}

.chat-option-btn {
    background: linear-gradient(135deg, #0F172A, #1A2744);
    color: #E2E8F0;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    white-space: nowrap;
}

.chat-option-btn:hover {
    background: linear-gradient(135deg, #1A2744, #243352);
    border-color: var(--gold-500, #C5A059);
    color: var(--gold-300, #C5A059);
    transform: translateY(-1px);
}

.chat-option-btn.selected {
    background: var(--gold-500, #C5A059);
    color: #0F172A;
    border-color: var(--gold-500, #C5A059);
    font-weight: 600;
}

/* Neural Animations & Status */
.neural-pulse {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ADE80;
    animation: neuralPulse 2s infinite;
}

@keyframes neuralPulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 5px #4ADE80;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
        box-shadow: 0 0 15px #C5A059;
        background: #C5A059;
    }

    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 5px #4ADE80;
    }
}

.chat-progress-ribbon {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
    background: rgba(10, 15, 29, 0.5);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.chat-scenarios {
    display: flex;
    gap: 8px;
    padding: 12px 15px;
    background: rgba(15, 23, 42, 0.9);
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    overflow-x: auto;

    @supports (scrollbar-width: thin) {
        scrollbar-width: none;
    }

    -ms-overflow-style: none;
}

.chat-scenarios::-webkit-scrollbar {
    display: none;
}

.scenario-label {
    font-size: 0.65rem;
    color: #64748B;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-right: 4px;
}

.scenario-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #94A3B8;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 14px;
    font-size: 0.7rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    transition: all 0.2s;
}

.scenario-btn:hover {
    background: rgba(197, 160, 89, 0.15);
    border-color: rgba(197, 160, 89, 0.4);
    color: #C5A059;
}

/* ── VISUAL ELEMENTS ── */

/* Risk Gauge (inline SVG rendered by JS) */
.risk-gauge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    border-radius: 12px;
    margin: 8px 0;
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.risk-gauge-visual {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.risk-gauge-text {
    font-size: 0.78rem;
    line-height: 1.4;
    color: #CBD5E1;
}

.risk-gauge-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.risk-low {
    color: #4ADE80;
}

.risk-moderate {
    color: #FBBF24;
}

.risk-high {
    color: #F87171;
}

/* Scenario Result Cards */
.scenario-card {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    border-radius: 12px;
    padding: 14px;
    margin: 8px 0;
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.scenario-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.scenario-card-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #E2E8F0;
}

.scenario-card-badge {
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-caution {
    background: rgba(251, 191, 36, 0.15);
    color: #FBBF24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.badge-opportunity {
    background: rgba(74, 222, 128, 0.15);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.badge-critical {
    background: rgba(248, 113, 113, 0.15);
    color: #F87171;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

/* Visual Bar Charts (inline) */
.visual-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
}

.visual-bar-label {
    font-size: 0.68rem;
    color: #94A3B8;
    min-width: 70px;
    text-align: right;
}

.visual-bar-track {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    overflow: hidden;
}

.visual-bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.8s ease;
}

.bar-green {
    background: linear-gradient(90deg, #22C55E, #4ADE80);
}

.bar-gold {
    background: linear-gradient(90deg, #B8860B, #C5A059);
}

.bar-red {
    background: linear-gradient(90deg, #DC2626, #F87171);
}

.bar-blue {
    background: linear-gradient(90deg, #2563EB, #60A5FA);
}

.visual-bar-value {
    font-size: 0.68rem;
    color: #E2E8F0;
    min-width: 40px;
    font-weight: 600;
}

/* Email Gate for PDF */
.email-gate {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    border-radius: 12px;
    padding: 14px;
    margin: 8px 0;
    border: 1px solid rgba(197, 160, 89, 0.25);
    text-align: center;
}

.email-gate h4 {
    color: var(--gold-500, #C5A059);
    font-size: 0.85rem;
    margin: 0 0 6px 0;
    font-family: 'Playfair Display', serif;
}

.email-gate p {
    color: #94A3B8;
    font-size: 0.72rem;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.email-gate-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: #E2E8F0;
    font-size: 0.78rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    margin-bottom: 8px;
    box-sizing: border-box;
}

.email-gate-input:focus {
    border-color: var(--gold-500, #C5A059);
}

.email-gate-btn {
    width: 100%;
    padding: 9px;
    background: linear-gradient(135deg, #C5A059, #D4B76A);
    color: #0F172A;
    border: none;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.email-gate-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

/* CTA Booking Button */
.chat-cta-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 9px 18px;
    background: linear-gradient(135deg, #C5A059, #D4B76A);
    color: #0F172A;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.chat-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

/* ===== NEWSLETTER POPUP ===== */
.newsletter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.newsletter-overlay.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-modal {
    background: var(--white);
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid var(--gold-300);
}

.newsletter-overlay.active .newsletter-modal {
    transform: translateY(0);
}

.newsletter-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--navy-600);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.newsletter-close:hover {
    color: var(--gold-500);
}

.newsletter-title {
    font-family: var(--font-display);
    color: var(--navy-900);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.newsletter-desc {
    color: var(--gray-500);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #E2E8F0;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.newsletter-form button {
    width: 100%;
    margin-bottom: 1rem;
}

/* ===== NEW HERO STYLES (FROM INDEX) ===== */
.hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding-top: 80px;
    overflow: hidden;
}

/* Subpage Hero Override (Fixes Gap) */
.hero-new.subpage-hero {
    min-height: 60vh;
    padding-bottom: 4rem;
}

@media (max-width: 768px) {
    .hero-new.subpage-hero {
        min-height: 50vh;
        padding-top: 100px;
    }
}

/* Utility: Tight Padding */
.tight-padding {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.hero-bg-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Default Home Background */
    background: linear-gradient(rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1518391846015-55a9cc003b25?auto=format&fit=crop&q=80') center/cover no-repeat;
    z-index: -1;
}

/* Page Specific Hero Backgrounds */
.hero-bg-about .hero-bg-new {
    background: linear-gradient(rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&q=80') center/cover no-repeat;
}

.hero-bg-strategies .hero-bg-new {
    background: linear-gradient(rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.65)), url('https://images.unsplash.com/photo-1611974765270-ca12586343bb?auto=format&fit=crop&q=80') center/cover no-repeat;
}

.hero-bg-planning .hero-bg-new {
    background: linear-gradient(rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&q=80') center/cover no-repeat;
}

.hero-bg-newsletters .hero-bg-new {
    background: linear-gradient(rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1586339949916-3e9457bef6d3?auto=format&fit=crop&q=80') center/cover no-repeat;
}

.hero-bg-success .hero-bg-new {
    background: linear-gradient(rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&q=80') center/cover no-repeat;
}

.hero-title-new {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.title-accent-new {
    color: var(--accent);
    display: block;
}

.hero-subtitle-new {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #E2E8F0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions-new {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ===== FINANCIAL PLANNING PAGE STYLES ===== */

/* Section Styles */
.fp-section {
    padding: 6rem 0;
    position: relative;
    border-bottom: 1px solid var(--navy-600);
}

.fp-section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    margin-bottom: 3rem;
    gap: 2rem;
}

.fp-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--gold-300);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.fp-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 4vw, 3rem);
    color: var(--white);
    letter-spacing: -0.02em;
}

.fp-section-desc {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 400px;
}

/* Strategy Cards */
.fp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fp-card {
    padding: 2.5rem;
    border: 1px solid var(--navy-600);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.fp-card:hover {
    border-color: var(--gold-300);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.fp-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold-300);
}

.fp-card p {
    color: #cbd5e1;
    /* Lighter gray for better legibility on dark bg */
    line-height: 1.7;
    font-size: 1.05rem;
}

.fp-card-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.55rem 1.1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-300);
    border: 1px solid var(--gold-300);
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fp-card-download:hover {
    background: var(--gold-300);
    color: var(--navy-900, #0f172a);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.fp-card-download svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Light section override — dark border/text for download buttons */
.fp-section-light .fp-card-download {
    color: var(--navy-800, #1e293b);
    border-color: var(--navy-800, #1e293b);
}

.fp-section-light .fp-card-download:hover {
    background: var(--navy-800, #1e293b);
    color: var(--gold-300);
}

/* VCF Offset Table */
.fp-table-container {
    margin-top: 3rem;
    overflow-x: auto;
    border: 1px solid var(--navy-600);
}

.fp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: transparent;
}

.fp-table th {
    background: var(--navy-900);
    color: #FFFFFF;
    padding: 1rem 1.25rem;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--navy-600);
}

.fp-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--navy-600);
    font-size: 0.95rem;
    color: var(--gray-400);
}

.fp-table .highlight-row {
    background: rgba(197, 160, 89, 0.08);
}

.fp-table .highlight-row td {
    font-weight: 700;
    color: var(--gold-300);
}

/* AI Interaction Section */
.fp-ai-section {
    background: var(--navy-800);
    border-bottom: 1px solid var(--navy-600);
    padding: 5rem 0;
}

.fp-ai-box {
    background: var(--navy-900);
    border: 1px solid var(--navy-600);
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.fp-ai-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.fp-ai-box>p {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.fp-ai-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.fp-ai-btn {
    padding: 0.6rem 1.2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: transparent;
    color: var(--gold-300);
    border: 1px solid var(--gold-300);
    cursor: pointer;
    transition: all 0.2s ease;
}

.fp-ai-btn:hover {
    background: var(--gold-300);
    color: #FFFFFF;
}

#ai-output {
    margin-top: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--gold-300);
    min-height: 100px;
    white-space: pre-wrap;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.fp-ai-box.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Dark-bg section variant */
.fp-section-dark {
    background: var(--navy-900);
}

.fp-section-dark .fp-section-title {
    color: #FFFFFF;
}

/* Light-bg section variant */
.fp-section-light {
    background: var(--navy-800);
}

/* Factsheet CTA */
.fp-cta {
    padding: 4rem 0;
}

.fp-cta-card {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fp-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
}

.fp-cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #F8FAFC;
    margin-bottom: 1rem;
}

.fp-cta-card p {
    color: #94A3B8;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* FP Buttons */
.fp-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--gold-300);
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.fp-btn-primary {
    background: var(--gold-300);
    color: #FFFFFF;
}

.fp-btn-primary:hover {
    background: transparent;
    color: var(--gold-300);
}

.fp-btn-outline {
    background: transparent;
    color: #FFFFFF;
    border-color: var(--navy-600);
}

.fp-btn-outline:hover {
    border-color: var(--gold-300);
    color: var(--gold-300);
}

/* Mobile */
@media (max-width: 768px) {
    .fp-section-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .fp-section-desc {
        max-width: 100%;
    }

    .fp-table-container {
        overflow-x: auto;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .fp-table {
        min-width: 600px;
    }
}

/* Mobile Chat — Compact & Easy to Minimize */
@media (max-width: 480px) {
    .chat-modal {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 55vh;
        max-height: 55vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%) scale(1);
    }

    .chat-modal.active {
        transform: translateY(0) scale(1);
    }

    .chat-fab {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
    }

    .chat-fab svg {
        width: 24px;
        height: 24px;
    }

    .chat-header {
        padding: 0.75rem 1rem;
    }

    .chat-header h3 {
        font-size: 0.95rem;
    }

    .chat-body {
        padding: 1rem;
        gap: 0.8rem;
    }

    .chat-input-area {
        padding: 0.75rem;
    }

    .chat-close {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        font-size: 1.4rem;
    }

    .chat-nudge {
        right: 72px;
        bottom: 24px;
        max-width: 200px;
        font-size: 0.8rem;
    }
}

/* Chat Fab Styles (Ensure no conflict) */
.chat-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-fab:hover {
    transform: scale(1.1);
}

.chat-fab svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.chat-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.chat-modal.active {
    transform: scale(1);
    opacity: 1;
}

/* ===== GLOBAL LAYOUT STANDARDIZATION ===== */
.section-light {
    background: var(--white);
    color: var(--navy-900);
}

.section-light h2,
.section-light h3,
.section-light h4 {
    color: var(--navy-900);
}

.section-light p,
.section-light li {
    color: var(--navy-800);
}

.section-dark {
    background: var(--navy-900);
    color: var(--white);
}

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

.section-dark p,
.section-dark li {
    color: var(--gray-400);
}

.section-alt {
    background: var(--navy-800);
    color: var(--white);
}

/* Light Mode Overrides for Strategy Components */
.section-light .strat-section-subtitle {
    color: var(--gold-500);
}

.section-light .model-name {
    color: var(--navy-900);
}

.section-light .model-id {
    color: var(--navy-600);
}

.section-light .model-btn:hover {
    background: var(--gray-100);
}

.section-light .model-btn.active {
    background: var(--navy-900);
}

.section-light .model-btn.active .model-name {
    color: var(--white);
}

.section-light .model-btn.active .model-id {
    color: var(--gold-300);
}

.section-light .model-btn {
    border-bottom-color: var(--gray-200);
}

/* Ensure chart wrapper stays dark for contrast */
.section-light .chart-wrapper {
    background: var(--navy-900);
    border-color: var(--navy-800);
}

.section-light .chart-wrapper p,
.section-light .chart-wrapper .model-detail-desc,
.section-light .chart-wrapper .stat-label {
    color: var(--gray-400) !important;
}

.section-light .chart-wrapper .stat-value,
.section-light .chart-wrapper .model-detail-title {
    color: var(--white) !important;
}

/* Ensure model selector sidebar stays dark */
.section-light .model-selector {
    background: var(--navy-800);
    border-color: var(--navy-600);
}

.section-light .model-btn .model-name {
    color: var(--white);
}

.section-light .model-btn .model-id {
    color: var(--gray-400);
}

.section-light .model-btn:hover {
    background: var(--navy-900);
}

.section-light .model-btn.active {
    background: var(--white);
}

.section-light .model-btn.active .model-name {
    color: var(--navy-900);
}

.section-light .model-btn.active .model-id {
    color: var(--navy-600);
}

/* ===== STRATEGIES PAGE STYLES ===== */

.strat-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--gold-300);
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.strat-btn-primary {
    background: var(--gold-300);
    color: #FFFFFF;
}

.strat-btn-primary:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    color: #FFFFFF;
}

.strat-btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--navy-600);
}

.strat-btn-outline:hover {
    border-color: var(--gold-300);
    color: var(--gold-300);
}

/* Section Headers */
.strat-section {
    padding: 6rem 0;
    position: relative;
}

.strat-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.strat-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: var(--gold-400);
    opacity: 0.9;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.strat-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 4vw, 3rem);
    color: var(--white);
    letter-spacing: -0.02em;
}

/* Portfolio Models */
.models-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-max-width: 100%; width: auto;) {
    .models-layout {
        flex-direction: row;
        align-items: flex-start;
    }
}

.models-sidebar {
    width: 100%;
}

@media (min-max-width: 100%; width: auto;) {
    .models-sidebar {
        width: 45%;
    }
}

.models-main {
    width: 100%;
}

@media (min-max-width: 100%; width: auto;) {
    .models-main {
        width: 55%;
    }
}

.model-selector {
    border: 1px solid var(--navy-600);
    background: var(--navy-800);
}

.model-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--navy-600);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.model-btn:last-child {
    border-bottom: none;
}

.model-btn:hover {
    background: var(--navy-900);
}

.model-btn.active {
    background: var(--white);
}

.model-btn.active .model-name {
    color: #FFFFFF;
}

.model-btn.active .model-id {
    color: var(--gold-300);
}

.model-btn.active .model-chevron {
    opacity: 1;
    color: var(--gold-300);
}

.model-id {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    display: block;
    margin-bottom: 0.25rem;
}

.model-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.model-chevron {
    opacity: 0;
    color: var(--gold-300);
    transition: opacity 0.2s ease;
    font-size: 1.2rem;
}

.chart-wrapper {
    background: var(--navy-800);
    border: 1px solid var(--navy-600);
    padding: 2.5rem;
    position: relative;
}

.chart-risk-label {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--gold-400);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.chart-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pie-chart-container {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
}

.pie-chart-container svg {
    transform: rotate(-90deg);
}

.pie-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.legend-swatch {
    width: 12px;
    height: 12px;
    display: inline-block;
}

.model-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.model-detail-desc {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-box {
    border: 1px solid var(--navy-600);
    padding: 1rem;
    text-align: center;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

/* Approach Section */
.approach-section {
    background: var(--navy-800);
    border-top: 1px solid var(--navy-600);
    border-bottom: 1px solid var(--navy-600);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    border-left: 1px solid var(--navy-600);
    border-right: 1px solid var(--navy-600);
}

.approach-card {
    background: transparent;
    border-bottom: 1px solid var(--navy-600);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

@media (min-max-width: 100%; width: auto;) {
    .approach-card {
        border-bottom: none;
        border-right: 1px solid var(--navy-600);
    }

    .approach-card:last-child {
        border-right: none;
    }
}

.approach-card:hover {
    background: var(--white);
}

.approach-card:hover .approach-card-title {
    color: #FFFFFF;
}

.approach-card:hover .approach-card-text {
    color: var(--navy-600);
}

.approach-card:hover .approach-icon {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.approach-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: transparent;
    margin-bottom: 1.5rem;
    color: var(--gold-300);
    border: 1px solid var(--gold-300);
    transition: all 0.2s ease;
    font-size: 1.8rem;
}

.approach-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    transition: color 0.2s ease;
}

.approach-card-text {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 1.05rem;
    transition: color 0.2s ease;
}

/* Risk Management Section */
.risk-section {
    background: var(--white);
    border-bottom: 1px solid var(--navy-600);
    color: var(--navy-900);
}

.risk-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-max-width: 100%; width: auto;) {
    .risk-layout {
        flex-direction: row;
        align-items: center;
    }
}

.risk-text {
    width: 100%;
}

@media (min-max-width: 100%; width: auto;) {
    .risk-text {
        width: 50%;
    }
}

.risk-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.risk-text p {
    color: var(--navy-600);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
}

.risk-cards-wrapper {
    width: 100%;
}

@media (min-max-width: 100%; width: auto;) {
    .risk-cards-wrapper {
        width: 50%;
    }
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-card {
    background: var(--gold-300);
    border: 1px solid rgba(197, 160, 89, 0.3);
    margin: -1px 0 0 -1px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.risk-card:hover {
    background: var(--navy-900);
    border-color: var(--navy-900);
    z-index: 1;
}

.risk-card:hover .risk-number {
    color: rgba(255, 255, 255, 0.15);
}

.risk-card:hover .risk-card-title {
    color: #FFFFFF;
}

.risk-card:hover .risk-card-text {
    color: rgba(255, 255, 255, 0.85);
}

.risk-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.15);
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.risk-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--navy-900);
    transition: color 0.3s ease;
}

.risk-card-text {
    font-size: 1rem;
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Factsheet CTA */
.factsheet-cta {
    padding: 4rem 0;
}

.factsheet-card {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.factsheet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
}

.factsheet-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #F8FAFC;
    margin-bottom: 1rem;
}

.factsheet-card p {
    color: #94A3B8;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===== AI SUITE PAGE STYLES ===== */

.ai-header-bg {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('images/ai-bg.jpg');
    background-size: cover;
    background-position: center;
}

.ai-feature-card {
    background: #FFFFFF;
    border: 1px solid var(--accent);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.2);
    transition: transform 0.3s ease;
}

.ai-feature-card:hover {
    transform: translateY(-5px);
}

.ai-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    border: 1px solid var(--accent);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.ai-result {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-left: 3px solid var(--accent);
    color: var(--navy-600);
    font-size: 0.95rem;
    display: none;
    /* Hidden by default */
}

/* AI Suite Section Utilities */
.text-dark {
    color: var(--navy-900);
}

.bg-gray-50 {
    background-color: #f8fafc;
}

.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: #FFFFFF;
}

.border-dashed {
    border-style: dashed !important;
}

.max-w-900 {
    max-width: 900px;
}

.border-top-light {
    border-top: 1px solid #e2e8f0;
}

.hero-bg-ai .hero-bg-new {
    background: linear-gradient(rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.7)), url('images/ai-bg.jpg') center/cover no-repeat;
}

.ai-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.ai-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    background-color: white;
}

.ai-grid-buttons-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.ai-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.ai-card-desc {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}


.benefit-search-container {
    margin: 2rem auto 0;
    max-width: 600px;
}

/* ===== ABOUT PAGE STYLES ===== */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.content-body {
    padding: 1rem 0;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.value-card h3 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray-600);
    /* Lighter gray for readability on dark */
    font-size: 0.95rem;
    line-height: 1.6;
}

.text-light {
    color: var(--gray-600);
}

.text-white {
    color: var(--white);
}

.section-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
}


/* ===== ABOUT PAGE STYLES ===== */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.content-body {
    padding: 1rem 0;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.value-card h3 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray-600);
    /* Lighter gray for readability on dark */
    font-size: 0.95rem;
    line-height: 1.6;
}

.text-light {
    color: #e2e8f0 !important;
}

.value-card p {
    color: #e2e8f0 !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

.text-white {
    color: var(--white);
}

.section-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Fix for Logo Size - 2026 Rebrand */
.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* ===== DEFINITIVE LAYOUT OVERRIDES ===== */
.fp-ai-section.section-light {
    background: var(--white) !important;
}

.strat-section.section-light {
    background: var(--white) !important;
}

.content-section.section-light {
    background: var(--white) !important;
}

.page-content.section-light {
    background: var(--white) !important;
}

/* Ensure chart wrapper stays dark for contrast on light background */
.section-light .chart-wrapper {
    background: var(--navy-900);
    border-color: var(--navy-800);
}

.section-dark {
    background: var(--navy-900);
    color: var(--white);
}

.section-alt {
    background: var(--navy-800);
    color: var(--white);
    position: relative;
}

/* Fix for AI Box in Light Sections */
.section-light .fp-ai-box {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.section-light .fp-ai-box h3 {
    color: var(--navy-900);
}

.section-light .fp-ai-box>p {
    color: var(--navy-700);
}

.section-light #ai-output {
    background: var(--gray-50);
    color: var(--navy-900);
    border-left-color: var(--gold-500);
}

/* Fix for Values Grid in Light Sections */
.section-light .value-card {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-light .value-card:hover {
    background: var(--gray-50);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.section-light .value-card h3 {
    color: var(--navy-900);
}

.section-light .value-card p {
    color: var(--navy-700) !important;
}

/* FIX: Ensure Newsletter Card text is visible when inside a .section-light container */
.section-light .newsletter-card .newsletter-title {
    color: var(--white) !important;
}

.section-light .newsletter-card .newsletter-excerpt {
    color: var(--gray-200) !important;
}

.section-light .newsletter-card .newsletter-highlights li {
    color: var(--gray-200) !important;
}

.section-light .newsletter-card .newsletter-highlights li::before {
    color: var(--gold-300) !important;
}

/* FIX: Cover cards inside section-light */
.section-light .what-we-cover-section {
    border-top-color: var(--navy-600);
}

.section-light .cover-card {
    background: var(--navy-800);
    border-color: var(--navy-600);
}

.section-light .cover-card:hover {
    border-color: var(--gold-300);
}

.section-light .cover-card-title {
    color: var(--white) !important;
}

.section-light .cover-card-text {
    color: var(--gray-200) !important;
}

/* ===== GLOBAL CTA SECTION ===== */
.global-cta-section {
    padding: 4rem 0;
    /* Uses inherited section-dark background mostly, or explicit */
    background: var(--navy-900);
    position: relative;
    z-index: 5;
}

.global-cta-card {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.global-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
}

/* Bottom border glow */
.global-cta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
    opacity: 0.5;
}

.global-cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #F8FAFC;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.global-cta-card p {
    color: #FFFFFF;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* ===== FAQ PAGE ===== */
.faq-section {
    padding: var(--space-2xl) 0 var(--space-3xl);
    background: var(--bg-light);
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold-300);
}

.faq-category-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--gold-300);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-category-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--navy-900);
    font-weight: 700;
}

.faq-item {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold-400);
    box-shadow: 0 4px 16px rgba(197, 160, 89, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy-900);
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--gold-500);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--gold-300);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-400);
    line-height: 1.75;
    font-size: 0.98rem;
}

.faq-answer-inner p {
    margin-bottom: 1rem;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.faq-answer-inner ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.faq-answer-inner ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.65;
}

.faq-answer-inner ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-300);
}

.faq-answer-inner ul li:last-child {
    margin-bottom: 0;
}

.faq-answer-inner strong {
    color: var(--navy-900);
}

@media (max-width: 768px) {
    .faq-category-header {
        gap: 0.75rem;
    }

    .faq-category-title {
        font-size: 1.3rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer-inner {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.92rem;
    }
}

/* ===== BITCOIN NEWS TICKER ===== */
.news-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(90deg, #0A0F1C 0%, #111827 50%, #0A0F1C 100%);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding: 0;
    height: 38px;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.news-ticker.ticker-hidden {
    display: none;
}

/* Push all page content down when ticker is visible */
body.has-ticker {
    padding-top: 108px;
    /* ticker 38px + navbar ~70px */
}

body.has-ticker .navbar {
    top: 38px;
}

body.has-ticker .mobile-nav {
    top: 108px;
}

/* When ticker is dismissed, revert to navbar-only padding */
body.ticker-dismissed .navbar,
body.ticker-closed .navbar {
    top: 0;
}

body.ticker-dismissed,
body.ticker-closed {
    padding-top: 70px;
}

body.ticker-dismissed .mobile-nav,
body.ticker-closed .mobile-nav {
    top: 70px;
}

.ticker-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    height: 100%;
    background: rgba(197, 160, 89, 0.1);
    border-right: 1px solid rgba(197, 160, 89, 0.2);
    flex-shrink: 0;
    white-space: nowrap;
}

.ticker-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #EF4444;
    animation: tickerPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes tickerPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0);
    }
}

.ticker-live-text {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-300, #C5A059);
}

.ticker-scroll-container {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.ticker-scroll-content {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    padding-left: 20px;
}

.ticker-scroll-content:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-headline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #E2E8F0;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
}



.ticker-date {
    color: var(--gold-300, #C5A059);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.ticker-separator {
    color: rgba(197, 160, 89, 0.4);
    font-size: 0.6rem;
}

.ticker-updated {
    font-size: 0.65rem;
    color: #64748B;
    white-space: nowrap;
    padding: 0 0.5rem;
    flex-shrink: 0;
    letter-spacing: 0.02em;
    opacity: 0.8;
}

.ticker-dismiss {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    border-left: 1px solid rgba(197, 160, 89, 0.2);
    color: #64748B;
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.2s, background 0.2s;
}

.ticker-dismiss:hover {
    color: #E2E8F0;
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .news-ticker {
        height: 44px;
    }

    body.has-ticker {
        padding-top: 120px;
        /* ticker 44px + spacing 2px + navbar ~74px on mobile */
    }

    body.has-ticker .navbar {
        top: 46px;
        /* 44px ticker + 2px visual buffer */
    }

    body.has-ticker .mobile-nav {
        top: 120px;
    }

    .ticker-live-badge {
        padding: 0 10px;
    }

    .ticker-live-text {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .ticker-headline {
        font-size: 0.72rem;
    }

    .ticker-date {
        font-size: 0.65rem;
    }

    .ticker-dismiss {
        width: 34px;
        height: 34px;
    }

    .ticker-updated {
        display: none;
    }
}

/* ===== QUICK ANSWER BOX (TL;DR for AI Citation) ===== */
.quick-answer-box {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-left: 4px solid var(--gold-300);
    border-radius: 8px;
    padding: 1.75rem 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.quick-answer-box::before {
    content: 'QUICK ANSWER';
    display: block;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold-300);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.quick-answer-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-200);
    margin: 0;
}

.quick-answer-box strong {
    color: var(--white);
}

/* ===== BITCOIN RECOVERY PAGE ===== */
.btc-recovery-section {
    padding: var(--space-xl) 0;
}

.btc-recovery-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 0.75rem;
}

.btc-recovery-section h3 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold-300);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.btc-recovery-section p,
.btc-recovery-section li {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-200);
}

.btc-recovery-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.btc-recovery-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.btc-recovery-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-300);
    font-weight: 600;
}

/* Data Tables for Settlement Matrix & Vector Table */
.data-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

.data-table thead {
    background: rgba(197, 160, 89, 0.12);
}

.data-table th {
    padding: 0.85rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-300);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    white-space: nowrap;
}

.data-table td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-200);
    vertical-align: top;
}

.data-table tbody tr:hover {
    background: rgba(197, 160, 89, 0.05);
}

.data-table .highlight-cell {
    color: var(--gold-300);
    font-weight: 600;
}

.data-table .negative-cell {
    color: #F87171;
    font-weight: 600;
}

.data-table .positive-cell {
    color: #34D399;
    font-weight: 600;
}

/* Key Firms Cards */
.firm-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.firm-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
    transition: border-color var(--transition-base);
}

.firm-card:hover {
    border-color: var(--gold-300);
}

.firm-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

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

.firm-card .firm-role {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-300);
    background: rgba(197, 160, 89, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-top: 0.75rem;
}

/* Compliance Disclaimer */
.compliance-disclaimer {
    background: rgba(248, 113, 113, 0.05);
    border: 1px solid rgba(248, 113, 113, 0.2);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.compliance-disclaimer strong {
    color: #F87171;
}

@media (max-width: 768px) {
    .quick-answer-box {
        padding: 1.25rem 1.25rem;
    }

    .data-table th,
    .data-table td {
        padding: 0.65rem 0.85rem;
        font-size: 0.8rem;
    }

    .firm-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== BITCOIN RECOVERY PAGE ===== */

/* Bitcoin Hero Background */
.hero-bg-bitcoin .hero-bg-new {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.55), rgba(30, 41, 59, 0.65)),
        url('https://images.unsplash.com/photo-1518546305927-5a555bb7020d?auto=format&fit=crop&q=80') center/cover no-repeat;
}

/* Smaller sub-section title variant */
.section-title-sm {
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
}

/* Content Block Typography */
.btc-content-block {
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.btc-content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: 1.25rem;
}

.btc-content-block ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.btc-content-block ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-400);
}

.btc-content-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-300);
}

.btc-content-block strong {
    color: var(--white);
    font-weight: 600;
}

/* Bitcoin Recovery Sections — Alternating Backgrounds */
.btc-recovery-section {
    padding: 5rem 0;
}

.btc-recovery-section:nth-child(odd) {
    background: var(--navy-800);
}

.btc-recovery-section:nth-child(even) {
    background: var(--navy-900);
}

/* Hero outline button style */
.hero-bg-bitcoin .btn-outline {
    border-color: var(--accent);
    color: var(--accent);
}

.hero-bg-bitcoin .btn-outline:hover {
    background: var(--accent);
    color: var(--navy-900);
}

/* Compliance link color */
.compliance-disclaimer a {
    color: var(--gold-300);
    text-decoration: underline;
}

.compliance-disclaimer a:hover {
    color: var(--gold-400);
}

/* ===== AUTHORITY BLOCK — Reusable Professional Content Component ===== */

.authority-block {
    background: linear-gradient(135deg, var(--navy-900) 0%, #0d1425 50%, var(--navy-900) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.authority-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(197, 160, 89, 0.2) 50%, transparent 90%);
}

.authority-block .authority-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.authority-block .authority-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-300);
    margin-bottom: 1rem;
}

.authority-block .authority-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.authority-block .authority-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Authority block lead paragraph */
.authority-block .authority-lead {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem 2.5rem;
    border-left: 3px solid var(--gold-300);
    background: rgba(30, 41, 59, 0.5);
    border-radius: 0 8px 8px 0;
}

.authority-block .authority-lead p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.authority-block .authority-lead p:last-child {
    margin-bottom: 0;
}

.authority-block .authority-lead strong {
    color: var(--white);
    font-weight: 600;
}

/* Authority topics grid */
.authority-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-max-width: 100%; width: auto;;
    margin: 0 auto;
}

.authority-topic-card {
    padding: 2rem;
    border: 1px solid var(--navy-600);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.6);
    transition: all 0.3s ease;
    position: relative;
}

.authority-topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-300), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.authority-topic-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.authority-topic-card:hover::before {
    opacity: 1;
}

.authority-topic-card .topic-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold-300);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.authority-topic-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.authority-topic-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--gray-400);
}

/* Closing prose block — single column below cards */
.authority-block .authority-closing {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem 2.5rem;
    border-left: 3px solid rgba(197, 160, 89, 0.3);
    border-radius: 0 8px 8px 0;
}

.authority-block .authority-closing p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.authority-block .authority-closing p:last-child {
    margin-bottom: 0;
}

.authority-block .authority-closing strong {
    color: var(--white);
    font-weight: 600;
}

/* "Who We Serve" community cards variant */
.authority-community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-max-width: 100%; width: auto;;
    margin: 0 auto;
}

.authority-community-card {
    padding: 2rem;
    border: 1px solid var(--navy-600);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.6);
    transition: all 0.3s ease;
    position: relative;
}

.authority-community-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-300), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.authority-community-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-2px);
}

.authority-community-card:hover::after {
    opacity: 1;
}

.authority-community-card .community-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold-300);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.authority-community-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.authority-community-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.authority-community-card .card-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-300);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.authority-community-card .card-learn-more:hover {
    gap: 0.7rem;
    color: var(--gold);
}

/* Blog Inline CTA — mid-article conversion box */
.blog-inline-cta {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.04) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-left: 4px solid var(--gold-300);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    text-align: center;
}

.blog-inline-cta .inline-cta-badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold-300);
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 50px;
    padding: 0.3rem 1rem;
    margin-bottom: 1rem;
}

.blog-inline-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.blog-inline-cta p {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 1.25rem;
}

.blog-inline-cta .btn {
    font-size: 0.9rem;
    padding: 0.8rem 2rem;
}

.blog-inline-cta .inline-cta-meta {
    font-size: 0.72rem;
    color: #475569;
    margin-top: 0.75rem;
}

@media (max-width: 768px) {
    .blog-inline-cta {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .blog-inline-cta h3 {
        font-size: 1.1rem;
    }
}

/* Fix: First Responders download buttons invisible in light section */
.fp-section-light .fp-card-download {
    color: var(--gold-300);
    border-color: var(--gold-300);
}

.fp-section-light .fp-card-download:hover {
    background: var(--gold-300);
    color: var(--navy-900, #0f172a);
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVENESS ===== */

/* --- Tablet (max 900px) --- */
@media (max-width: 900px) {

    /* Hero buttons: stack vertically */
    .hero-actions-new {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-actions-new .btn {
        width: 100%;
        max-width: 320px;
        margin-left: 0 !important;
        text-align: center;
        justify-content: center;
    }

    /* Why grid: reduce min-width so cards don't overflow */
    .why-grid {
        grid-template-columns: 1fr;
        border-left: none;
    }

    .why-card {
        border-left: 1px solid var(--navy-600);
    }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {

    /* Financial Planning cards: single column */
    .fp-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .fp-card {
        padding: 1.75rem;
    }

    /* FP section header */
    .fp-section {
        padding: 3.5rem 0;
    }

    .fp-section-title {
        font-size: 1.8rem;
    }

    /* VCF Table enhancements */
    .fp-table th {
        font-size: 0.7rem;
        padding: 0.75rem 0.8rem;
    }

    .fp-table td {
        font-size: 0.85rem;
        padding: 0.75rem 0.8rem;
    }

    /* Buttons: prevent overflow on narrow screens */
    .btn {
        font-size: 0.85rem;
        padding: 0.9rem 1.5rem;
        letter-spacing: 0.03em;
    }

    /* Global CTA: tighter on mobile */
    .global-cta-card {
        padding: 2.5rem 1.5rem;
    }

    .global-cta-card h2 {
        font-size: 1.6rem;
    }

    .global-cta-card p {
        font-size: 0.95rem;
    }

    /* Ticker: larger dismiss button for touch */
    .ticker-dismiss {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.2rem;
    }

    /* Values grid */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Content intro */
    .content-intro {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    /* Authority block mobile */
    .authority-block {
        padding: 3rem 0;
    }

    .authority-block .authority-title {
        font-size: 1.6rem;
    }

    .authority-block .authority-lead {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .authority-block .authority-lead p {
        font-size: 0.95rem;
    }

    .authority-topics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .authority-topic-card {
        padding: 1.5rem;
    }

    .authority-community-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .authority-community-card {
        padding: 1.5rem;
    }

    .authority-block .authority-closing {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    /* About page grids */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Chat fab: smaller/repositioned on mobile */
    .chat-fab {
        bottom: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
    }

    .chat-nudge {
        bottom: 3.5rem;
        right: 0.5rem;
        max-width: 200px;
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    /* btc recovery sections */
    .btc-recovery-section {
        padding: 3rem 0;
    }

    /* Newsletter cards */
    .newsletter-card {
        padding: 1.5rem;
    }

    /* Strategy cards */
    .strategy-card {
        padding: 1.5rem;
    }

    /* Firm cards already handled */
}

/* --- Small phone (max 480px) --- */
@media (max-width: 480px) {

    /* Container tighter padding */
    .container {
        padding: 0 1rem;
    }

    /* Hero: reduce whitespace */
    .hero {
        padding-top: calc(var(--space-xl) + 50px);
        padding-bottom: var(--space-lg);
    }

    .title-line {
        font-size: 1.8rem;
    }

    .title-accent {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    /* Hero actions on very small screens */
    .hero-actions-new .btn {
        max-width: 100%;
        font-size: 0.8rem;
        padding: 0.85rem 1.2rem;
    }

    /* Subpage hero: tighter */
    .hero-new.subpage-hero {
        min-height: 45vh;
        padding-top: 80px;
    }

    /* Section spacing */
    .section {
        padding: 3rem 0;
    }

    /* Section headers */
    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* FP cards tighter */
    .fp-card {
        padding: 1.25rem;
    }

    .fp-card h3 {
        font-size: 1.25rem;
    }

    .fp-card p {
        font-size: 0.95rem;
    }

    /* Download button: full-width for easy tapping */
    .fp-card-download {
        width: 100%;
        justify-content: center;
        padding: 0.65rem 1rem;
    }

    /* VCF table: even smaller text */
    .fp-table th {
        font-size: 0.6rem;
        padding: 0.6rem;
        letter-spacing: 0.02em;
    }

    .fp-table td {
        font-size: 0.75rem;
        padding: 0.6rem;
    }

    /* Footer */
    .footer-grid {
        gap: 1.5rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    /* Ticker text */
    .ticker-headline {
        font-size: 0.65rem;
    }

    .ticker-live-text {
        font-size: 0.55rem;
    }

    /* Briefing form */
    .briefing-form-card {
        padding: 1rem;
    }

    /* FAQ */
    .faq-question {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

    .faq-answer-inner {
        padding: 0 1rem 1rem;
        font-size: 0.88rem;
    }

    /* Global CTA */
    .global-cta-card {
        padding: 2rem 1rem;
    }

    .global-cta-card h2 {
        font-size: 1.4rem;
    }

    .global-cta-card p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Leadership cards */
    .leadership-card {
        padding: 1.5rem;
    }
}

/* ===== AI TRIUMVIRATE SECTION ===== */
.ai-triumvirate {
    background: var(--navy-800);
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--navy-600);
    border-bottom: 1px solid var(--navy-600);
}

.triumvirate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (max-width: 900px) {
    .triumvirate-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

.triumvirate-img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--navy-600);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-slow);
}

.triumvirate-img:hover {
    transform: translateY(-10px);
}

.agent-tier {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-md);
    border-left: 2px solid var(--navy-600);
    transition: border-color var(--transition-base);
}

.agent-tier:hover {
    border-color: var(--gold-300);
}

.agent-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.agent-badge {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.agent-badge.amplify {
    background: #E0F2FE;
    color: #0369A1;
}

.agent-badge.seneca {
    background: #FEF3C7;
    color: #92400E;
}

.agent-badge.watchdog {
    background: #DCFCE7;
    color: #166534;
}

.agent-tier h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--white);
}

.agent-tier p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== FULL MOBILE RESPONSIVENESS PASS ===== */

/* --- Strategies page: tablet (≤ 900px) --- */
@media (max-width: 900px) {
    .strat-section {
        padding: 3.5rem 0;
    }

    .strat-section-header {
        margin-bottom: 2.5rem;
    }

    .risk-section .risk-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .risk-text,
    .risk-cards-wrapper {
        width: 100%;
    }

    .risk-text h2 {
        text-align: center;
    }

    .risk-text p {
        text-align: center;
    }

    /* Chart wrapper tighter */
    .chart-wrapper {
        padding: 1.5rem;
    }

    /* Factsheet CTA */
    .factsheet-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .factsheet-card h2 {
        font-size: 1.5rem;
    }

    /* Hero-new: tighter on tablet */
    .hero-new {
        padding: 100px 16px 60px;
    }
}

/* --- Strategies page: mobile (≤ 768px) --- */
@media (max-width: 768px) {
    .strat-section {
        padding: 2.5rem 0;
    }

    .strat-section-header {
        margin-bottom: 2rem;
    }

    .strat-section-title {
        font-size: 1.8rem;
    }

    .strat-section-subtitle {
        font-size: 0.95rem;
    }

    /* Model selector buttons: tighter */
    .model-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .model-id {
        font-size: 0.65rem;
    }

    /* Chart wrapper */
    .chart-wrapper {
        padding: 1.25rem;
    }

    .chart-risk-label {
        position: static;
        text-align: center;
        padding: 0 0 0.75rem 0;
    }

    /* Pie chart smaller on mobile */
    .pie-chart-container {
        width: 180px;
        height: 180px;
    }

    .pie-legend {
        gap: 1rem;
    }

    .legend-item {
        font-size: 0.8rem;
    }

    /* Stats grid tighter */
    .stats-grid {
        gap: 0.75rem;
    }

    .stat-box {
        padding: 0.75rem;
    }

    /* Risk grid: keep 2-col but tighter */
    .risk-grid {
        gap: 0;
    }

    .risk-card {
        padding: 1.25rem;
    }

    .risk-number {
        font-size: 2.5rem;
    }

    .risk-card-title {
        font-size: 1rem;
    }

    .risk-card-text {
        font-size: 0.85rem;
    }

    /* Authority block */
    .authority-block {
        padding: 2.5rem 0;
    }

    .authority-lead {
        padding: 1.5rem;
    }

    .authority-closing {
        padding: 1.5rem;
    }

    /* Factsheet */
    .factsheet-cta {
        padding: 2rem 0;
    }

    .factsheet-card {
        padding: 1.75rem 1.25rem;
    }

    .factsheet-card h2 {
        font-size: 1.3rem;
    }

    .factsheet-card p {
        font-size: 0.9rem;
    }

    /* Brand logo */
    .brand-logo {
        height: 36px;
    }

    /* Hero-new mobile */
    .hero-new {
        padding: 90px 16px 50px;
    }

    .hero-new .hero-content h1 .title-line {
        font-size: 1.8rem;
    }

    .hero-new .hero-content h1 .title-accent-new {
        font-size: 2rem;
    }

    .hero-new .hero-subtitle-new {
        font-size: 0.95rem !important;
    }
}

/* --- Strategies page: small phone (≤ 480px) --- */
@media (max-width: 480px) {
    .strat-section {
        padding: 2rem 0;
    }

    .strat-section-header {
        margin-bottom: 1.5rem;
    }

    .strat-section-title {
        font-size: 1.5rem;
    }

    /* Risk grid: stack to single column on very small screens */
    .risk-grid {
        grid-template-columns: 1fr;
    }

    .risk-card {
        padding: 1.25rem;
        margin: 0;
        border: 1px solid rgba(197, 160, 89, 0.2);
        margin-top: -1px;
    }

    .risk-number {
        font-size: 2rem;
        margin-bottom: 0.25rem;
    }

    /* Pie chart even smaller */
    .pie-chart-container {
        width: 160px;
        height: 160px;
    }

    /* Model selector: horizontal scroll if needed */
    .model-selector {
        max-height: 250px;
        overflow-y: auto;
    }

    .model-btn {
        padding: 0.6rem 0.75rem;
    }

    /* Hero-new small phone */
    .hero-new {
        padding: 80px 12px 40px;
    }

    .hero-new .hero-content h1 .title-line {
        font-size: 1.5rem;
    }

    .hero-new .hero-content h1 .title-accent-new {
        font-size: 1.7rem;
    }

    /* Authority cards */
    .authority-topic-card {
        padding: 1.25rem;
    }

    .authority-topic-card h3 {
        font-size: 1rem;
    }

    .authority-topic-card p {
        font-size: 0.88rem;
    }

    /* Factsheet CTA button */
    .strat-btn {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 0.85rem;
    }

    /* Briefing grid */
    .briefing-step-item {
        gap: 1rem;
    }

    .briefing-step-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   AUDIT UTILITY CLASSES (To reduce inline styles and fix linting)
   ========================================================================== */
/* Colors */
.u-color-gold,
.u-text-gold {
    color: var(--gold-300) !important;
}

.u-color-zinc,
.u-text-zinc {
    color: #cbd5e1 !important;
}

.u-color-muted,
.u-text-muted {
    color: #94a3b8 !important;
}

.u-color-accent {
    color: var(--accent) !important;
}

.u-color-white {
    color: white !important;
}

/* Backgrounds */
.u-bg-navy-dark {
    background: var(--navy-900) !important;
}

.u-bg-navy-800 {
    background: var(--navy-800) !important;
}

.u-bg-card {
    background: rgba(255, 255, 255, 0.03) !important;
}

/* Layout & Spacing */
.u-display-flex {
    display: flex !important;
}

.u-display-none {
    display: none !important;
}

.u-flex-hero {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.u-justify-center {
    justify-content: center !important;
}

.u-flex-wrap {
    flex-wrap: wrap !important;
}

.u-gap-1 {
    gap: 1rem !important;
}

.u-gap-2 {
    gap: 2rem !important;
}

.u-grid-niche {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.u-margin-top-05 {
    margin-top: 0.5rem !important;
}

.u-margin-top-1 {
    margin-top: 1rem !important;
}

.u-margin-top-2 {
    margin-top: 2rem !important;
}

.u-margin-bottom-1 {
    margin-bottom: 1rem !important;
}

.u-margin-bottom-2 {
    margin-bottom: 2rem !important;
}

.u-margin-x-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Borders */
.u-border-gold-soft {
    border-top: 1px solid rgba(197, 160, 89, 0.2) !important;
}

.u-border-accent {
    border: 1px solid var(--accent) !important;
}

.u-niche-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

/* Typography */
.u-font-size-11 {
    font-size: 1.1rem !important;
}

.u-line-height-16 {
    line-height: 1.6 !important;
}

.u-max-w-600 {
    max-width: 600px !important;
    margin-left: auto;
    margin-right: auto;
}

.u-max-w-700 {
    max-width: 700px !important;
}

.u-w-full {
    width: 100% !important;
}

.u-no-decoration {
    text-decoration: none !important;
}

/* ==========================================================================
   INSTITUTIONAL PREMIUM COMPONENTS (Magnet Upgrades)
   ========================================================================== */

/* 1. Global Utility Upgrades */
:root {
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(197, 160, 89, 0.2);
    --auth-blue: #3b82f6;
}

/* 2. Authority Ribbon */
.authority-ribbon {
    background: var(--navy-800);
    border-bottom: 1px solid var(--navy-600);
    padding: 1rem 0;
    overflow: hidden;
}

.authority-track {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 3rem;
}

.authority-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-400);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.authority-item svg {
    color: var(--gold-300);
}

/* 3. Cinematic Intel Cards (Glassmorphism) */
.intel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.intel-card {
    position: relative;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: var(--navy-800);
    border: 1px solid var(--navy-600);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 400px;
}

.intel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 1;
}

.intel-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-300);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.intel-card-content {
    position: relative;
    z-index: 2;
}

.intel-status {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.8);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.intel-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.intel-card p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.intel-link {
    color: var(--gold-300);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
}

.intel-link:hover {
    gap: 0.8rem;
}

/* 4. Magnetic Conversion Guide Card */
.guide-card {
    background: var(--navy-800);
    border: 1px solid var(--navy-600);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.guide-thumb {
    height: 220px;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}

.guide-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
}

.guide-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.guide-tag {
    color: var(--gold-300);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.guide-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.guide-desc {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* 5. Strategy Grid (New Refinement) */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* 6. Floating Conversion Enhancements */
.floating-cta {
    animation: slideInUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== MOBILE STICKY BOTTOM BAR ===== */
/* Transforms the floating CTA into a full-width bottom bar on mobile */
@media (max-width: 768px) {
    .floating-cta {
        /* Override inline positioning */
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;

        /* Force full-width — use vw units to bypass flex shrink-to-content */
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 100vw !important;
        box-sizing: border-box !important;

        /* Full-width bar styling */
        border-radius: 0 !important;
        padding: 1rem 1.5rem !important;
        padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px)) !important;

        /* Premium glass + gold gradient */
        background: linear-gradient(135deg,
                rgba(197, 160, 89, 0.95) 0%,
                rgba(168, 130, 60, 0.95) 50%,
                rgba(197, 160, 89, 0.95) 100%) !important;
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
        box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4),
            0 -1px 0 rgba(255, 255, 255, 0.1) !important;

        /* Layout */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.6rem !important;

        /* Typography */
        font-size: 0.85rem !important;
        font-weight: 800 !important;
        letter-spacing: 1.5px !important;
        text-transform: uppercase !important;
        color: var(--navy, #0a0f1c) !important;
        text-decoration: none !important;

        /* Ensure it's above everything */
        z-index: 99999 !important;
    }

    .floating-cta:hover,
    .floating-cta:active {
        transform: none !important;
        box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(197, 160, 89, 0.3) !important;
    }

    .floating-cta:active {
        background: linear-gradient(135deg,
                rgba(168, 130, 60, 1) 0%,
                rgba(140, 105, 40, 1) 50%,
                rgba(168, 130, 60, 1) 100%) !important;
    }

    .floating-cta svg {
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0;
    }

    /* Add bottom padding to footer so content isn't hidden behind sticky bar */
    .footer {
        padding-bottom: 70px;
    }
}

/* ===== IPHONE MOBILE RESPONSIVENESS FIXES (390x844) ===== */
/* Audit Date: March 7, 2026 */

/* --- Chat Modal: Full-width bottom sheet on mobile --- */
@media (max-width: 768px) {
    .chat-modal {
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 60vh !important;
        max-height: 60vh !important;
        border-radius: 20px 20px 0 0 !important;
        transform: translateY(100%) scale(1) !important;
    }

    .chat-modal.active {
        transform: translateY(0) scale(1) !important;
    }

    .chat-fab {
        width: 50px !important;
        height: 50px !important;
        bottom: 16px !important;
        right: 16px !important;
    }

    .chat-fab svg {
        width: 24px !important;
        height: 24px !important;
    }

    .chat-close {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px;
        min-height: 44px;
        font-size: 1.5rem;
    }
}

/* --- Scroll Indicator: Hide on mobile/tablet --- */
@media (max-width: 768px) {
    .hero-scroll-indicator {
        display: none !important;
    }
}

/* --- Nudge: Reposition as bottom banner on mobile --- */
@media (max-width: 768px) {
    .chat-nudge {
        bottom: 76px !important;
        right: 16px !important;
        left: 16px !important;
        max-width: calc(100% - 32px) !important;
        font-size: 0.82rem;
    }
}

/* --- iOS Safari: Prevent auto-zoom on input focus (font-size must be ≥ 16px) --- */
@media (max-width: 768px) {

    input,
    select,
    textarea {
        font-size: 16px !important;
    }

    .chat-input {
        font-size: 16px !important;
    }

    .briefing-input {
        font-size: 16px !important;
    }
}

/* --- Ticker: Tighter spacing on narrow screens --- */
@media (max-width: 390px) {
    .ticker-live-badge {
        padding: 0 6px !important;
    }

    .ticker-live-text {
        font-size: 0.55rem !important;
        letter-spacing: 0.5px;
    }

    .ticker-headline {
        font-size: 0.68rem !important;
    }

    .ticker-dismiss {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px;
    }
}

/* --- Hero buttons: Stack vertically on very small screens --- */
@media (max-width: 420px) {
    .hero-actions-new {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-actions-new .btn {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
    }
}

/* --- Floating CTA: Ensure no overlap with chat fab on mobile --- */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        border-radius: 0 !important;
        z-index: 999 !important;
    }
}

/* --- Safe area insets for newer iPhones with notch/Dynamic Island --- */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    @media (max-width: 768px) {
        .chat-modal {
            padding-bottom: env(safe-area-inset-bottom);
        }

        .floating-cta {
            padding-bottom: calc(12px + env(safe-area-inset-bottom));
        }

        .footer {
            padding-bottom: calc(70px + env(safe-area-inset-bottom));
        }
    }
}

/* --- Fund Intelligence Dashboard & Social Proof: Full-width cards on mobile --- */
@media (max-width: 768px) {

    #fund-intel-grid,
    .fund-intel-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .social-proof-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* ===== NEWSLETTERS PAGE — EXTRACTED INLINE STYLES (Sprint 5) ===== */

/* Hero background for newsletters page */
.newsletters-hero {
    background-image: url('images/research_newsletter_hero.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.newsletters-hero-bg {
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.9) 100%);
}

/* Status readout pill */
.status-readout {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(197, 160, 89, 0.4);
}

.status-readout-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--gold-300);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Gold hero label (subtitle used as section label) */
.hero-label-gold {
    margin-bottom: 0.5rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--gold-300);
    font-weight: 700;
}

/* Body text variant for hero (larger, lighter) */
.hero-body-large {
    color: rgba(255, 255, 255, 0.9);
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Dark background section */
.section-dark {
    background: var(--navy-900);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Centered section title */
.section-title-center {
    text-align: center;
    margin-bottom: 0.6rem;
    color: var(--white);
}

/* Section lead paragraph (centered, descriptive) */
.section-lead {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
    color: var(--gray-400);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Flush what-we-cover (no border/margin/padding on top) */
.what-we-cover-flush {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

/* Narrow container variant */
.container-narrow {
    max-width: 800px;
}

/* Newsletter popup link (full-width button) */
.newsletter-popup-link {
    width: 100%;
    margin-bottom: 1rem;
    text-decoration: none;
}

/* Footer disclosure (standardized) */
.footer-disclosure {
    margin-top: 2.5rem;
    padding-top: 2rem;
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.6;
    max-max-width: 100%; width: auto;;
}

/* Newsletter card glass override for newsletters page */
.newsletter-card.u-glass-thick {
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: rgba(15, 23, 42, 0.6);
    padding: 3rem;
}

.newsletter-fineprint {
    margin-top: 0.5rem;
}

/* ===== SERVICES PAGE — EXTRACTED INLINE STYLES (Sprint 5) ===== */

/* Section border + padding utilities */
.svc-border-top {
    border-top: 1px solid var(--navy-700);
}

.svc-pad-section {
    padding: 4rem 0;
}

.svc-pad-section-sm {
    padding: 3rem 0;
}

/* Section headings */
.svc-section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
}

/* Section lead text */
.svc-section-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 2rem;
}

/* Card grid layout */
.svc-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Card base */
.svc-card {
    border-radius: 12px;
    padding: 1.8rem;
}

/* Dark variant (navy background) */
.svc-card-dark {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--navy-600);
}

/* Light variant (for light-bg sections) */
.svc-card-light {
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Card titles */
.svc-card-title {
    color: var(--gold-300);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.svc-card-title-dark {
    color: var(--navy-900);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Card body text */
.svc-card-body {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Section link (gold uppercase) */
.svc-section-link {
    color: var(--gold-300);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.svc-section-link:hover {
    color: var(--gold-400, #d4a843);
}

/* Deep-dive link cards */
.svc-deep-link {
    text-decoration: none;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--navy-600);
    border-radius: 12px;
    padding: 2rem;
    display: block;
    transition: all 0.3s ease;
}

.svc-deep-link:hover {
    border-color: var(--gold-300);
    transform: translateY(-4px);
}

/* Text color utilities */
.text-white {
    color: var(--white);
}

.text-muted-light {
    color: #8899aa;
}

.text-muted-slate {
    color: #64748b;
}

/* ===== ADDITIONAL UTILITY CLASSES (Inline-style migration) ===== */
.u-padding-y-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.u-padding-x-2 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

.u-padding-y-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.u-fs-10 {
    font-size: 1rem !important;
}

.u-fs-12 {
    font-size: 1.2rem !important;
}

.u-fs-18 {
    font-size: 1.8rem !important;
}

.u-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.u-margin-bottom-15 {
    margin-bottom: 1.5rem !important;
}

.u-lh-16 {
    line-height: 1.6 !important;
}

.u-fw-700 {
    font-weight: 700 !important;
}
/* === FIX Jun 9 2026: article data tables (dark theme) + numbered lists === */
table.article-data-table{background:#0F2040 !important;border:1px solid rgba(197,160,89,.25);border-radius:8px;border-collapse:separate;border-spacing:0;width:100%;margin:1.5rem 0;overflow:hidden;}
table.article-data-table th{background:rgba(197,160,89,.14) !important;color:#C5A059 !important;padding:.85rem 1rem;text-align:left;font-size:.72rem;letter-spacing:.07em;text-transform:uppercase;border-bottom:1px solid rgba(197,160,89,.3);}
table.article-data-table td{background:transparent !important;color:#D7DEE8 !important;padding:.85rem 1rem;border-bottom:1px solid rgba(255,255,255,.07);vertical-align:top;font-size:.92rem;}
table.article-data-table tbody tr:last-child td{border-bottom:0;}
table.article-data-table tbody tr:hover td{background:rgba(197,160,89,.05) !important;}
ol.article-list-number{display:block !important;padding-left:1.5rem;margin:1.25rem 0;columns:1 !important;}
ol.article-list-number li{display:list-item !important;float:none !important;width:auto !important;margin:0 0 .9rem;color:#D7DEE8;line-height:1.65;}
@media(max-width:768px){
  .article-content{overflow-wrap:break-word;}
  table.article-data-table{display:block;overflow-x:auto;-webkit-overflow-scrolling:touch;}
  table.article-data-table th,table.article-data-table td{min-width:110px;font-size:.8rem;padding:.6rem .7rem;}
}
