/* 
===========================================================
   JAE 1 INVESTMENT - Premium Design System (Sapphire & Gold)
===========================================================
*/

:root {
    /* Color Palette */
    --bg-main: #040717;         /* Deep Obsidian Sapphire */
    --bg-surface: #0a0e29;      /* Navy Steel Surface */
    --bg-card: rgba(10, 15, 43, 0.55); /* Glassmorphic Card base */
    --bg-card-hover: rgba(16, 24, 64, 0.75);
    
    /* Text Colors */
    --text-main: #f1f3f9;       /* Off-White */
    --text-muted: #8fa0dd;      /* Slate Blue/Gray */
    --text-dim: rgba(255, 255, 255, 0.3);
    
    /* Accent & Brand Colors */
    --accent-gold: #b8975a;     /* Champagne Gold */
    --accent-gold-hover: #d1b175;
    --accent-teal: #00f2fe;     /* Electric Teal */
    --accent-blue: #2563eb;     /* Deep Royal Blue */
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --section-pad: 8rem 0;
    --border-glass: 1px solid rgba(255, 255, 255, 0.06);
    --border-glass-hover: 1px solid rgba(0, 242, 254, 0.2);
    --shadow-card: 0 20px 50px rgba(2, 4, 15, 0.6);
    --transition-fast: 0.25s ease;
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) var(--bg-main);
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.75;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Common Layout Elements */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-pad);
    position: relative;
    z-index: 2;
}

.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    text-transform: uppercase;
    background: rgba(184, 151, 90, 0.08);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    border: 1px solid rgba(184, 151, 90, 0.15);
    margin-bottom: 1.25rem;
}

.center-tag {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
    margin-bottom: 2.5rem;
    border-radius: 2px;
}

.center-divider {
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 4rem auto;
}

.paragraph {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Background Gradients Orbs */
.bg-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.45;
}

/* Utility Bar */
.utility-bar {
    background-color: #02040c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 0.6rem 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

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

.utility-left {
    display: flex;
    gap: 2rem;
}

.utility-left i {
    color: var(--accent-gold);
    margin-right: 0.4rem;
}

.abn-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Sticky Navigation Header */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all var(--transition-smooth);
    background-color: rgba(4, 7, 23, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    background-color: rgba(3, 5, 17, 0.95);
}

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

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

.logo-mark {
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.35rem;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    line-height: 1;
}

.brand-sub {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.7rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-top: 0.15rem;
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 0.35rem 0;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: #FFFFFF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width var(--transition-fast);
}

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

.btn-nav-cta {
    background: rgba(184, 151, 90, 0.08);
    border: 1px solid rgba(184, 151, 90, 0.2);
    color: #FFFFFF;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.btn-nav-cta:hover {
    background: var(--accent-gold);
    color: var(--bg-main);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(184, 151, 90, 0.25);
}

.btn-nav-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn .bar {
    width: 22px;
    height: 2.5px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.2rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all var(--transition-smooth);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-main);
    box-shadow: 0 4px 14px rgba(184, 151, 90, 0.15);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 151, 90, 0.3);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    color: #FFFFFF;
    border: var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--accent-teal);
    background: rgba(0, 242, 254, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 242, 254, 0.15);
}

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

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 8rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-image: url('hero-bg-notext.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(4, 7, 23, 0.98) 0%, rgba(4, 7, 23, 0.92) 40%, rgba(4, 7, 23, 0.6) 75%, rgba(4, 7, 23, 0.3) 100%);
    z-index: 2;
}

.hero-orb-top {
    width: 600px;
    height: 600px;
    background: rgba(184, 151, 90, 0.04);
    top: -200px;
    left: -100px;
}

.hero-orb-bottom {
    width: 700px;
    height: 700px;
    background: rgba(0, 242, 254, 0.03);
    bottom: -300px;
    right: -100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(0, 242, 254, 0.06);
    border: 1px solid rgba(0, 242, 254, 0.12);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-teal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-teal);
    animation: beaconPulse 1.8s infinite ease-in-out;
}

@keyframes beaconPulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.6); opacity: 1; }
    100% { transform: scale(1); opacity: 0.5; }
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    margin-bottom: 3rem;
    max-width: 640px;
    font-size: 1.15rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.visual-stack {
    position: relative;
    padding: 1.5rem;
    display: flex;
    justify-content: flex-end;
}

.glass-advisory-panel {
    background: rgba(10, 16, 45, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--accent-gold);
    border-radius: 12px;
    padding: 2.25rem 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 380px;
    position: relative;
    z-index: 5;
    animation: panelFloat 6s ease-in-out infinite;
}

@keyframes panelFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.panel-header-pulse {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-teal);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.pulse-node {
    width: 7px;
    height: 7px;
    background-color: var(--accent-teal);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-teal);
    animation: beaconPulse 1.5s infinite;
}

.panel-metric-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.25rem;
    gap: 1.5rem;
}

.metric-node {
    display: flex;
    flex-direction: column;
}

.metric-val {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
}

.metric-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.metric-divider {
    width: 1px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.08);
}

.panel-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.panel-subtext i {
    color: var(--accent-gold);
    margin-right: 0.35rem;
}

/* Stats Performance Banner */
.stats-banner {
    background-color: #030511;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 3rem 0;
    position: relative;
    z-index: 10;
}

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

.stat-box {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.stat-box:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.6rem;
}

/* About Section */
.about-section {
    background-color: var(--bg-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.about-orb {
    width: 600px;
    height: 600px;
    background: rgba(184, 151, 90, 0.03);
    top: 20%;
    right: -200px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.feat-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feat-icon {
    color: var(--accent-gold);
    background: rgba(184, 151, 90, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 1px solid rgba(184, 151, 90, 0.15);
    flex-shrink: 0;
}

.feat-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.feat-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
    padding: 1rem;
}

.about-glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(184, 151, 90, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.about-img-main {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.about-image-wrapper:hover .about-img-main {
    transform: scale(1.02) rotate(-1deg);
}

.about-floating-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: rgba(3, 5, 20, 0.9);
    border: var(--border-glass);
    padding: 0.9rem 1.4rem;
    border-radius: 6px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.badge-title {
    font-size: 0.65rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.badge-subtitle {
    font-size: 1.05rem;
    font-weight: 800;
    color: #FFFFFF;
}

/* Analytics Section (High Tech Mock Dashboard) */
.analytics-section {
    background-color: var(--bg-surface);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.analytics-orb {
    width: 800px;
    height: 800px;
    background: rgba(0, 242, 254, 0.03);
    top: 50%;
    left: -300px;
    transform: translateY(-50%);
}

.console-box {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(20px);
    z-index: 2;
}

.console-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.console-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: rgba(3, 5, 17, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.console-tab-btn {
    background: none;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.25rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all var(--transition-fast);
}

.console-tab-btn:last-child {
    border-right: none;
}

.console-tab-btn i {
    font-size: 1.1rem;
    transition: color var(--transition-fast);
}

.console-tab-btn:hover {
    background-color: rgba(255, 255, 255, 0.02);
    color: #FFFFFF;
}

.console-tab-btn.active {
    background-color: transparent;
    color: var(--accent-gold);
    box-shadow: inset 0 -3px 0 var(--accent-gold);
}

.console-tab-btn.active i {
    color: var(--accent-gold);
}

.console-screen {
    padding: 3rem;
    position: relative;
    min-height: 380px;
}

.console-overlay-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 1;
}

.console-tab-content {
    display: none;
    position: relative;
    z-index: 2;
    animation: tabFadeIn 0.45s ease;
}

.console-tab-content.active {
    display: block;
}

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

.dashboard-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.console-badge-live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    font-weight: 700;
    background-color: rgba(0, 242, 254, 0.08);
    color: var(--accent-teal);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 242, 254, 0.15);
}

.live-dot {
    width: 5px;
    height: 5px;
    background-color: var(--accent-teal);
    border-radius: 50%;
    animation: livePulse 1s infinite;
}

@keyframes livePulse {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.dashboard-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.dashboard-info p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Suitability lists / bars inside tab 1 */
.suitability-scores {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.score-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.country-lbl {
    width: 90px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
}

.progress-track {
    flex-grow: 1;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.score-val {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-teal);
}

/* Tab 1 SVG Chart */
.dashboard-chart {
    background-color: rgba(2, 4, 15, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 1.5rem;
}

.chart-header-console {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.5rem;
}

.svg-chart-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.svg-chart {
    width: 100%;
    height: auto;
    max-height: 180px;
}

.chart-bar-grow {
    transform-origin: bottom;
    animation: barGrow 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes barGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* Tab 2 Allocations */
.allocations-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.alloc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.03);
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-size: 0.95rem;
}

.alloc-title {
    font-weight: 600;
    color: #FFFFFF;
}

.alloc-title i {
    margin-right: 0.6rem;
}

.text-gold { color: var(--accent-gold); }
.text-teal { color: var(--accent-teal); }
.text-dim { color: var(--text-muted); }

.alloc-val {
    font-weight: 700;
    color: var(--accent-teal);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Tab 2 Circle Progress */
.radial-gauge-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.radial-anim {
    stroke-dashoffset: 408.4;
    animation: radialGrow 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes radialGrow {
    to { stroke-dashoffset: 81.6; }
}

/* Tab 3 Bullets & Node Map */
.network-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.network-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #FFFFFF;
}

.bullet-node {
    width: 8px;
    height: 8px;
    background-color: #4b5563;
    border-radius: 50%;
}

.bullet-node.active {
    background-color: var(--accent-teal);
    box-shadow: 0 0 8px var(--accent-teal);
}

.node-network-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.svg-node-network {
    width: 100%;
    max-height: 180px;
    height: auto;
}

.node-pulse {
    animation: nodeBlink 2s infinite ease-in-out;
}

@keyframes nodeBlink {
    0% { r: 6px; fill-opacity: 0.8; }
    50% { r: 8.5px; fill-opacity: 1; stroke: rgba(0, 242, 254, 0.4); stroke-width: 3px; }
    100% { r: 6px; fill-opacity: 0.8; }
}

.node-line-1 {
    stroke-dasharray: 4;
    animation: dashShift 15s linear infinite;
}

@keyframes dashShift {
    to { stroke-dashoffset: -40; }
}

/* Methodology Section (4-Step Lifecycle) */
.methodology-section {
    background-color: var(--bg-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

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

.methodology-card {
    background-color: var(--bg-card);
    border: var(--border-glass);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    position: relative;
    transition: all var(--transition-smooth);
}

.methodology-card:hover {
    transform: translateY(-8px);
    background-color: var(--bg-card-hover);
    border-color: rgba(184, 151, 90, 0.25);
    box-shadow: var(--shadow-card);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: rgba(184, 151, 90, 0.15);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color var(--transition-fast);
}

.methodology-card:hover .step-num {
    color: var(--accent-gold);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Capabilities (Corporate Services Cards) */
.capabilities-section {
    background-color: var(--bg-surface);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.capabilities-orb {
    width: 600px;
    height: 600px;
    background: rgba(184, 151, 90, 0.03);
    bottom: -150px;
    right: -200px;
}

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

.capability-card {
    background-color: var(--bg-card);
    border: var(--border-glass);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.cap-card-inner {
    padding: 3rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.capability-card:hover {
    transform: translateY(-8px);
    background-color: var(--bg-card-hover);
    box-shadow: var(--shadow-card);
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: rgba(255, 255, 255, 0.04);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background var(--transition-fast);
}

.capability-card:hover::before {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-teal));
}

.cap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.cap-icon-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.25rem;
    transition: all var(--transition-fast);
}

.capability-card:hover .cap-icon-box {
    color: var(--accent-teal);
    border-color: rgba(0, 242, 254, 0.25);
    background-color: rgba(0, 242, 254, 0.05);
    transform: scale(1.05);
}

.cap-number {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dim);
}

.capability-card:hover .cap-number {
    color: var(--accent-gold);
}

.capability-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.cap-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Global Network Section */
.global-network-section {
    background-color: var(--bg-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.network-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 6rem;
    align-items: center;
}

.network-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.city-badge {
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFFFFF;
    transition: all var(--transition-fast);
}

.city-badge i {
    color: var(--accent-teal);
    margin-right: 0.4rem;
}

.city-badge:hover {
    border-color: var(--accent-teal);
    background-color: rgba(0, 242, 254, 0.05);
    transform: translateY(-2px);
}

.network-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-globe-box {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-glow-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(184, 151, 90, 0.15);
    border-radius: 50%;
    animation: slowOrbitSpin 20s linear infinite;
}

@keyframes slowOrbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hub-representation {
    position: relative;
    width: 200px;
    height: 200px;
}

.hub-center-node {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--bg-surface);
    border: 2px solid var(--accent-gold);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent-gold);
    box-shadow: 0 0 25px rgba(184, 151, 90, 0.3);
    z-index: 5;
}

.satellite-node {
    position: absolute;
    background-color: rgba(10, 14, 38, 0.85);
    border: 1px solid var(--accent-teal);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: #FFFFFF;
    z-index: 4;
}

.sat-1 { top: 0; left: 50%; transform: translateX(-50%); }
.sat-2 { bottom: 0; left: 50%; transform: translateX(-50%); }
.sat-3 { top: 50%; right: -20px; transform: translateY(-50%); }

.connecting-line {
    position: absolute;
    background-color: rgba(0, 242, 254, 0.2);
    z-index: 1;
}

.line-sat-1 {
    width: 2px;
    height: 80px;
    top: 20px; left: 50%;
    transform: translateX(-50%);
}

.line-sat-2 {
    width: 2px;
    height: 80px;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
}

.line-sat-3 {
    width: 100px;
    height: 2px;
    top: 50%; right: 0;
    transform: translateY(-50%);
}

/* Contact & Advisory Desk Section */
.contact-section {
    background-color: var(--bg-surface);
}

.contact-orb {
    width: 700px;
    height: 700px;
    background: rgba(184, 151, 90, 0.03);
    bottom: -250px;
    right: -200px;
}

.contact-console-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    background-color: var(--bg-card);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 4rem;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 5;
}

.contact-card-console {
    display: flex;
    flex-direction: column;
}

.console-card-header {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.console-card-subheader {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 3rem;
}

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

.console-info-row {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.info-icon-circle {
    background-color: rgba(184, 151, 90, 0.08);
    border: 1px solid rgba(184, 151, 90, 0.15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.console-info-row:hover .info-icon-circle {
    background-color: var(--accent-gold);
    color: var(--bg-main);
    box-shadow: 0 0 15px rgba(184, 151, 90, 0.3);
}

.info-details {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.info-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
}

.info-val a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.info-val a:hover {
    color: var(--accent-teal);
    text-decoration: underline;
}

/* Right Panel: Hours Card */
.hours-card-console {
    background-color: rgba(2, 4, 15, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.hours-header {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.75rem;
    color: #FFFFFF;
}

.hours-entries {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hours-entry {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding-bottom: 0.75rem;
}

.hours-entry:last-child {
    border-bottom: none;
}

.hours-days {
    color: var(--text-muted);
    font-weight: 600;
}

.hours-time {
    font-weight: 700;
    color: #FFFFFF;
}

.gold-text { color: var(--accent-gold); }
.closed-text { color: rgba(255, 255, 255, 0.25); }

.consultation-cta-box h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.consultation-cta-box p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Footer styling */
.main-footer {
    background-color: #02040d;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 5rem;
    position: relative;
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.1fr 1.1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.brand-desc {
    font-size: 0.95rem;
    max-width: 340px;
    margin-bottom: 1.5rem;
}

.abn-footer-lbl {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
}

.footer-links-col h4 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin-bottom: 1.75rem;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col li {
    margin-bottom: 0.85rem;
}

.footer-links-col a {
    text-decoration: none;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-links-col a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    background-color: #010208;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.2);
}

.footer-domain a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-domain a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Animations keyframe utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive Media Queries */
@media (max-width: 1200px) {
    :root {
        --container-width: 960px;
    }
    .hero-title { font-size: 3.2rem; }
    .about-grid { gap: 4rem; }
    .capabilities-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .methodology-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 992px) {
    :root {
        --container-width: 720px;
    }
    .hero-bg-overlay {
        background: linear-gradient(180deg, rgba(4, 7, 23, 0.98) 0%, rgba(4, 7, 23, 0.88) 50%, rgba(4, 7, 23, 0.98) 100%);
    }
    .hero-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-visual { justify-content: center; }
    .visual-stack { max-width: 380px; width: 100%; padding: 0.5rem; }
    .glass-advisory-panel { width: 100%; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 1.5rem; }
    .stat-box { border-right: none; }
    .stat-box:nth-child(even) { border-left: none; }
    
    .about-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .about-features { align-items: center; text-align: left; }
    .about-visual { order: -1; }
    
    .dashboard-layout { grid-template-columns: 1fr; gap: 3rem; }
    
    .network-container { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .network-cities { justify-content: center; }
    
    .contact-console-layout { grid-template-columns: 1fr; gap: 4rem; padding: 3rem 2.5rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .brand-desc { max-width: 100%; }
}

@media (max-width: 768px) {
    :root {
        --container-width: 100%;
        --section-pad: 4.5rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .utility-bar { display: none; }
    
    .navbar { padding: 1.25rem 0; }
    
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 75%; height: 100vh;
        background-color: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        transition: right var(--transition-smooth);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 99;
        gap: 3rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 101;
    }
    
    /* Toggle Hamburger animations */
    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding: 6rem 0 4rem 0;
        min-height: auto;
    }
    .hero-title { font-size: 2.3rem; }
    .hero-actions { flex-direction: column; width: 100%; max-width: 320px; }
    .btn { width: 100%; }
    
    .section-title { font-size: 2rem; }
    .section-desc { font-size: 1.05rem; margin-bottom: 2.5rem; }
    .section-divider { margin-bottom: 2rem; }
    
    .about-floating-badge {
        right: 15px;
        bottom: 15px;
        padding: 0.75rem 1.25rem;
    }
    
    .console-screen { padding: 2rem 1.25rem; }
    .console-tabs { grid-template-columns: 1fr; }
    .console-tab-btn { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.03); }
    .console-tab-btn.active { box-shadow: inset 4px 0 0 var(--accent-gold); }
    .score-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; width: 100%; }
    .country-lbl { width: 100%; }
    .progress-track { width: 100%; }
    
    .methodology-card { padding: 1.75rem 1.25rem; }
    .cap-card-inner { padding: 2rem 1.25rem; }
    
    .capabilities-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .methodology-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    
    .contact-console-layout { padding: 2rem 1.25rem; }
    .console-card-header { font-size: 1.75rem; }
    .console-card-subheader { margin-bottom: 2rem; }
    .hours-card-console { padding: 1.5rem 1.25rem; }
    
    .main-footer { padding-top: 3.5rem; }
    .footer-bottom-content { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
    .stat-box { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 1.5rem; }
    .stat-box:last-child { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    
    .visual-globe-box {
        width: 270px;
        height: 270px;
    }
    .hub-representation {
        width: 150px;
        height: 150px;
    }
    .hub-center-node {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .sat-1, .sat-2, .sat-3 {
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
    }
    .sat-3 {
        right: -10px;
    }
    .line-sat-1 {
        height: 60px;
        top: 15px;
    }
    .line-sat-2 {
        height: 60px;
        bottom: 15px;
    }
    .line-sat-3 {
        width: 75px;
    }
}
