/* ===== CRYPTO TRADING PLATFORM — DARK THEME ===== */

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

:root {
    /* Core backgrounds */
    --bg: #0a0e17;
    --bg-secondary: #0d1321;
    --bg-card: #111827;
    --bg-card-hover: #151f32;
    --bg-elevated: #1a2332;
    --bg-dark: #060a11;
    --bg-warm: #0c1220;

    /* Text */
    --text: #e8edf5;
    --text-muted: #7b8ba3;
    --text-light: #4a5568;
    --text-dim: #364152;

    /* Primary accent — electric cyan/blue */
    --accent: #00d4ff;
    --accent-rgb: 0, 212, 255;
    --accent-light: #33ddff;
    --accent-dark: #0099cc;
    --accent-muted: rgba(0, 212, 255, 0.15);

    /* Secondary accent — vivid green (gains) */
    --success: #00e87b;
    --success-rgb: 0, 232, 123;
    --success-muted: rgba(0, 232, 123, 0.12);

    /* Error/loss — red */
    --error: #ff3b5c;
    --error-rgb: 255, 59, 92;
    --error-muted: rgba(255, 59, 92, 0.12);

    /* Warning — amber */
    --warning: #ffaa00;
    --warning-muted: rgba(255, 170, 0, 0.12);

    /* Gold accent */
    --gold: #f0b90b;
    --gold-light: #f8d12f;
    --gold-muted: rgba(240, 185, 11, 0.12);

    /* Purple accent */
    --purple: #8b5cf6;
    --purple-muted: rgba(139, 92, 246, 0.12);

    /* Borders */
    --border: rgba(255, 255, 255, 0.06);
    --border-solid: #1e293b;
    --border-accent: rgba(0, 212, 255, 0.2);
    --border-hover: rgba(0, 212, 255, 0.4);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00d4ff, #0099ff);
    --gradient-success: linear-gradient(135deg, #00e87b, #00c853);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
    --gradient-glow: radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
    --gradient-hero: linear-gradient(135deg, #0a0e17 0%, #0d1a2d 50%, #0a1628 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.15);
    --shadow-glow-strong: 0 0 60px rgba(0, 212, 255, 0.25);

    /* Misc */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== ANIMATED BACKGROUND GRID ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: screen;
    box-shadow: 0 0 10px var(--accent), 0 0 20px rgba(var(--accent-rgb), 0.3);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(var(--accent-rgb), 0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease,
                border-color 0.3s ease;
    opacity: 0.5;
}

.cursor-ring.hover {
    width: 56px;
    height: 56px;
    border-color: var(--accent);
    opacity: 0.8;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.2s forwards;
    letter-spacing: -0.5px;
}

.preloader-logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    animation: loadBar 0.6s ease forwards;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.5);
}

@keyframes loadBar {
    0%   { width: 0; }
    100% { width: 100%; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    transition: background 0.4s ease, border-color 0.4s ease,
                transform 0.4s ease;
    border-bottom: 1px solid transparent;
}

nav.scrolled {
    background: rgba(10, 14, 23, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

nav.scrolled .logo        { color: #fff; }
nav.scrolled .nav-links a { color: var(--text-muted); }

nav.scrolled .nav-cta {
    border-color: var(--accent);
    color: var(--accent);
}

nav.scrolled .nav-cta:hover {
    background: var(--accent);
    color: var(--bg);
}

nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: color 0.4s ease;
    position: relative;
    z-index: 1003;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.logo::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--accent), 0 0 16px rgba(var(--accent-rgb), 0.4);
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(0.8); }
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
    padding: 4px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-cta {
    background: transparent;
    border: 1px solid rgba(var(--accent-rgb), 0.4);
    color: var(--accent);
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent,
                rgba(var(--accent-rgb), 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover::before { left: 100%; }

.nav-cta:hover {
    background: rgba(var(--accent-rgb), 0.1);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: var(--shadow-glow),
                inset 0 0 20px rgba(var(--accent-rgb), 0.05);
}

/* ===== MOBILE MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1003;
    background: none;
    border: none;
    position: relative;
}

.hamburger span {
    width: 28px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s ease;
    display: block;
}

nav.scrolled .hamburger span { background: var(--text); }

.hamburger.active span            { background: #fff !important; }
.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(6px, -6px); }

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.mobile-menu a:hover { color: var(--accent); }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%,
            rgba(var(--accent-rgb), 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%,
            rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%,
            rgba(var(--success-rgb), 0.04) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(var(--accent-rgb), 0.06);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25%       { transform: translate(-20px, 30px) rotate(5deg); }
    50%       { transform: translate(10px, -20px) rotate(-3deg); }
    75%       { transform: translate(30px, 10px) rotate(2deg); }
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: kenBurnsFade 24s infinite linear;
}

.hero-slide:nth-child(1) {
    background-image:
        linear-gradient(rgba(10, 14, 23, 0.35), rgba(10, 14, 23, 0.35)),
        url('/assets/img/The_Equities_Trading_Floor_3.jpg?q=75&w=1600&auto=format&fit=crop');
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    background-image:
        linear-gradient(rgba(10, 14, 23, 0.35), rgba(10, 14, 23, 0.35)),
        url('/assets/img/Building-Wallpapers-HD-Free-Download.jpg?q=75&w=1600&auto=format&fit=crop');
    animation-delay: 8s;
}

.hero-slide:nth-child(3) {
    background-image:
        linear-gradient(rgba(10, 14, 23, 0.35), rgba(10, 14, 23, 0.35)),
        url('/assets/img/2048px-Gaming-Wall-Street_BTS_Prodigium-266.webp?q=75&w=1600&auto=format&fit=crop');
    animation-delay: 16s;
}

@keyframes kenBurnsFade {
    0%   { opacity: 0; transform: scale(1); }
    5%   { opacity: 1; }
    28%  { opacity: 1; }
    33%  { opacity: 0; transform: scale(1.12); }
    100% { opacity: 0; transform: scale(1); }
}

/* Lightened overlay — images show through clearly */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 14, 23, 0.2)  0%,
        rgba(10, 14, 23, 0.45) 40%,
        rgba(10, 14, 23, 0.88) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 120px 40px 40px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    background: var(--accent-muted);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    opacity: 0;
    animation: slideUp 0.8s ease 0.5s forwards;
}

.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    max-width: 900px;
    margin-bottom: 32px;
    letter-spacing: -1.5px;
    opacity: 0;
    animation: slideUp 0.8s ease 0.7s forwards;
}

.hero h1 em {
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0;
    animation: slideUp 0.8s ease 0.9s forwards;
}

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

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    opacity: 0;
    animation: slideUp 0.8s ease 1.1s forwards;
}

.hero-btn-primary {
    background: var(--gradient-primary);
    color: var(--bg);
    border: none;
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

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

.hero-btn-primary:hover::before { left: 100%; }

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(var(--accent-rgb), 0.35);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: var(--radius-sm);
}

.hero-btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(var(--accent-rgb), 0.05);
    color: var(--accent);
}

.hero-stats {
    display: flex;
    gap: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    opacity: 0;
    animation: slideUp 0.8s ease 1.3s forwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-number .stat-prefix { font-size: 1.5rem; color: var(--accent); }

.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
    font-weight: 500;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.scroll-indicator span {
    font-size: 0.65rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0%   { top: -100%; }
    100% { top: 100%; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 40px;
    position: relative;
    z-index: 1;
}

.trust-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.trust-item svg {
    color: var(--accent);
    flex-shrink: 0;
    opacity: 0.8;
}

.trust-item:hover { color: var(--text); }

.trust-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
    flex-shrink: 0;
}

/* ===== SECTIONS ===== */
section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 120px 40px;
    position: relative;
    z-index: 1;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.section-header h2 em {
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-num {
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

/* ===== ABOUT ===== */
.about-section { position: relative; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-text p strong {
    color: var(--text);
    font-weight: 600;
}

.about-metrics {
    display: flex;
    gap: 32px;
    margin: 32px 0;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.about-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-metric-val {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.about-metric-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-radius: var(--radius-sm);
    background: var(--accent-muted);
}

.about-link:hover {
    background: rgba(var(--accent-rgb), 0.15);
    border-color: var(--accent);
    gap: 12px;
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.1);
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: var(--radius-lg);
}

.about-image-wrapper:hover .about-image { transform: scale(1.03); }

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(var(--accent-rgb), 0.1), transparent 60%);
    z-index: 1;
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    border-radius: var(--radius-lg);
    z-index: 2;
    pointer-events: none;
}

.about-badge {
    position: absolute;
    bottom: 32px;
    left: -20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-md), var(--shadow-glow);
    backdrop-filter: blur(12px);
    z-index: 3;
}

.about-badge-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.about-badge-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== INFRASTRUCTURE STRIP ===== */
.infra-strip {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 32px;
}

.infra-strip-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 16px;
    border-right: 1px solid var(--border);
    transition: background 0.3s ease;
}

.infra-strip-item:last-child { border-right: none; }
.infra-strip-item:hover      { background: var(--bg-card-hover); }

.infra-strip-val {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
}

.infra-strip-lbl {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* ===== MARKETS GRID ===== */
.markets-section { position: relative; }

.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.market-card {
    background: var(--bg-card);
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.market-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.market-card:hover {
    border-color: rgba(var(--accent-rgb), 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.market-card:hover::before { transform: scaleX(1); }
.market-card:hover::after  { opacity: 1; }

.market-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: var(--accent-muted);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(var(--accent-rgb), 0.1);
}

.market-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.market-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.market-card .market-code {
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

.market-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

/* Market spec list */
.market-specs {
    list-style: none;
    margin-bottom: 24px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.market-specs li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.ms-key {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ms-val {
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.market-card .market-link {
    font-size: 0.8rem;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.market-card .market-link:hover { color: var(--accent-light); gap: 12px; }
.market-card .market-link::after { content: '→'; transition: transform 0.3s ease; }
.market-card .market-link:hover::after { transform: translateX(4px); }

/* ===== PLATFORM SPLIT ===== */
.platform-split {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.platform-split::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse at center,
        rgba(var(--accent-rgb), 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.platform-split-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.platform-visual { position: relative; }

.platform-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.platform-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(var(--accent-rgb), 0.08), transparent 60%);
    z-index: 1;
    pointer-events: none;
    border-radius: var(--radius-lg);
}

.platform-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
    transition: transform 0.6s ease;
    filter: saturate(0.85) brightness(0.9);
}

.platform-img-wrapper:hover .platform-img {
    transform: scale(1.03);
    filter: saturate(1) brightness(0.95);
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.platform-features .section-num {
    margin-bottom: 12px;
    display: block;
}

.platform-features h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
}

.platform-features h2 em {
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-features > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.pf-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
}

.pf-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.3s ease;
}

.pf-item:hover { padding-left: 8px; }

.pf-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-muted);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.pf-item:hover .pf-icon {
    background: rgba(var(--accent-rgb), 0.2);
    box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.15);
}

.pf-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pf-text strong {
    font-size: 0.92rem;
    color: var(--text);
    font-weight: 600;
}

.pf-text span {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== PARALLAX QUOTE ===== */
.parallax-quote {
    width: 100%;
    max-width: 100%;
    padding: 160px 40px;
    background-image: url('/assets/img/stock-market-gainers-and-losers-monitor-ut7nswe2jgzx3fth.jpg?q=75&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

.parallax-quote::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(10, 14, 23, 0.92), rgba(13, 19, 33, 0.88));
    backdrop-filter: blur(2px);
}

.parallax-quote::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    pointer-events: none;
}

.parallax-quote-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.parallax-quote blockquote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
}

.parallax-quote cite {
    font-style: normal;
    font-size: 0.85rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ===== OPERATIONS ===== */
.operations {
    background: var(--bg-secondary);
    max-width: 100%;
    padding: 120px 0;
    position: relative;
}

.operations::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent, rgba(var(--accent-rgb), 0.2), transparent);
}

.operations-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.operations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.operations-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.operations-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: var(--radius-lg);
    filter: saturate(0.85) brightness(0.9);
}

.operations-image-wrapper:hover .operations-image {
    transform: scale(1.03);
    filter: saturate(1) brightness(0.95);
}

.operations-list { list-style: none; }

.operations-list li {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.operations-list li:hover {
    padding-left: 12px;
    background: linear-gradient(90deg,
        rgba(var(--accent-rgb), 0.03), transparent);
}

.operations-list li:first-child { padding-top: 0; }

.op-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 600;
    min-width: 40px;
    transition: color 0.3s ease;
}

.operations-list li:hover .op-num {
    text-shadow: 0 0 10px rgba(var(--accent-rgb), 0.5);
}

.op-content h4 {
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 8px;
}

.op-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    width: 100%;
    max-width: 100%;
    padding: 120px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.testimonials-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 80px;
    text-align: center;
}

.testimonial-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--text);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.2px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.testimonials-nav button {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: var(--bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-muted);
    font-size: 1rem;
    border-radius: var(--radius-sm);
}

.testimonials-nav button:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-muted);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.testimonials-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border-solid);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-dots button.active {
    background: var(--accent);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.4);
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    padding-bottom: 24px;
    transition: all 0.4s ease;
}

.team-card:hover {
    border-color: rgba(var(--accent-rgb), 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
}

.team-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.team-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(10, 14, 23, 0.95), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.team-card:hover .team-overlay { opacity: 1; }

.team-social {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
}

.team-social:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

.team-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 600;
    margin: 16px 16px 4px;
    letter-spacing: -0.2px;
}

.team-card > p {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    padding: 0 16px;
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--bg-secondary);
    max-width: 100%;
    padding: 120px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent, rgba(var(--accent-rgb), 0.2), transparent);
}

.contact-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}

.contact-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text);
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.contact-info h2 em {
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info > p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 48px;
}

.contact-detail {
    margin-bottom: 32px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border-left: 2px solid var(--accent);
}

.contact-detail label {
    display: block;
    font-size: 0.68rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.contact-detail p {
    font-size: 1rem;
    color: var(--text);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 48px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    pointer-events: none;
}

.form-group {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 14px 16px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    border-radius: var(--radius-sm);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1), var(--shadow-glow);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237b8ba3' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-submit {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--bg);
    border: none;
    padding: 16px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    z-index: 1;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(var(--accent-rgb), 0.3);
}

.form-submit:active { transform: translateY(0); }

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show { display: block; }

.form-success svg {
    width: 64px;
    height: 64px;
    color: var(--success);
    margin-bottom: 24px;
    filter: drop-shadow(0 0 20px rgba(var(--success-rgb), 0.3));
}

.form-success h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 12px;
    font-weight: 700;
}

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

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--bg-dark);
    padding: 100px 40px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(var(--accent-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-rgb), 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center,
        rgba(var(--accent-rgb), 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.cta-banner h2 em {
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-banner p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-banner .cta-btn {
    background: var(--gradient-primary);
    color: var(--bg);
    border: none;
    padding: 16px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

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

.cta-banner .cta-btn:hover::before { left: 100%; }

.cta-banner .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(var(--accent-rgb), 0.35);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    color: var(--accent);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-muted);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.back-to-top svg { width: 18px; height: 18px; }

/* ===== FOOTER ===== */
footer {
    background: var(--bg-dark);
    padding: 80px 40px 40px;
    border-top: 1px solid var(--border);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent, rgba(var(--accent-rgb), 0.3), transparent);
}

.footer-inner { max-width: 1400px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand .logo {
    display: inline-flex;
    margin-bottom: 20px;
    color: #fff;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h5 {
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.footer-col ul  { list-style: none; }
.footer-col li  { margin-bottom: 12px; }

.footer-col a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--accent); }

.footer-newsletter { margin-top: 24px; }

.footer-newsletter p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.footer-newsletter-form { display: flex; }

.footer-newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-right: none;
    padding: 10px 14px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    outline: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    transition: border-color 0.3s ease;
}

.footer-newsletter-form input:focus  { border-color: var(--accent); }
.footer-newsletter-form input::placeholder { color: var(--text-light); }

.footer-newsletter-form button {
    background: var(--gradient-primary);
    color: var(--bg);
    border: none;
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.footer-newsletter-form button:hover {
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-light);
}

.footer-bottom .disclaimer {
    font-size: 0.7rem;
    color: var(--text-light);
    max-width: 600px;
    text-align: right;
    line-height: 1.5;
    opacity: 0.7;
}

/* ===== UTILITY CLASSES ===== */
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.live {
    background: var(--success);
    box-shadow: 0 0 8px rgba(var(--success-rgb), 0.5);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(var(--success-rgb), 0.5); }
    50%       { box-shadow: 0 0 16px rgba(var(--success-rgb), 0.8); }
}

.price-up   { color: var(--success) !important; }
.price-down { color: var(--error) !important; }
.mono       { font-family: 'JetBrains Mono', monospace; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-accent {
    background: var(--accent-muted);
    color: var(--accent);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
}

.badge-success {
    background: var(--success-muted);
    color: var(--success);
    border: 1px solid rgba(var(--success-rgb), 0.15);
}

.badge-error {
    background: var(--error-muted);
    color: var(--error);
    border: 1px solid rgba(var(--error-rgb), 0.15);
}

.badge-warning {
    background: var(--warning-muted);
    color: var(--warning);
    border: 1px solid rgba(255, 170, 0, 0.15);
}

/* ===== SHARED INNER PAGE STYLES ===== */

/* Page Hero Banner */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(var(--accent-rgb), 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-rgb), 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.page-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.5) brightness(0.8);
}

.page-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(10, 14, 23, 0.7) 0%,
        rgba(10, 14, 23, 0.85) 50%,
        rgba(10, 14, 23, 0.97) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

.page-hero-content::before {
    content: '';
    position: absolute;
    left: 40px;
    bottom: 60px;
    width: 2px;
    height: 60%;
    background: linear-gradient(to bottom,
        transparent, rgba(var(--accent-rgb), 0.3), transparent);
    pointer-events: none;
}

.page-hero-content .hero-tag {
    opacity: 1;
    animation: none;
}

.page-hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    max-width: 800px;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.page-hero-content h1 em {
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-content p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    font-weight: 400;
    line-height: 1.7;
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--bg-secondary);
    padding: 14px 40px;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 10;
}

.breadcrumbs-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    font-family: 'JetBrains Mono', monospace;
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover    { color: var(--accent); }
.breadcrumbs .separator { color: var(--text-dim); font-size: 0.65rem; }
.breadcrumbs .current   { color: var(--accent); font-weight: 500; }

/* Page Content */
.page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.page-content-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

/* Two-Column Layouts */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.two-col-offset {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

/* Content Typography */
.page-content h2,
.page-content-narrow h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.4px;
}

.page-content h2 em,
.page-content-narrow h2 em {
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-content h3,
.page-content-narrow h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    margin-top: 48px;
    letter-spacing: -0.2px;
}

.page-content p,
.page-content-narrow p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-content p strong,
.page-content-narrow p strong {
    color: var(--text);
    font-weight: 600;
}

/* Values / Features Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.value-card {
    padding: 36px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%,
        rgba(var(--accent-rgb), 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-rgb), 0.2);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.value-card:hover::before { transform: scaleX(1); }
.value-card:hover::after  { opacity: 1; }

.value-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    color: var(--accent);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.25;
    letter-spacing: -1px;
}

.value-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 48px;
    margin-top: 64px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent,
        rgba(var(--accent-rgb), 0.3) 10%,
        rgba(var(--accent-rgb), 0.3) 90%,
        transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
    transition: padding-left 0.3s ease;
}

.timeline-item:hover  { padding-left: 8px; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--bg);
    border: 2px solid rgba(var(--accent-rgb), 0.5);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -44px;
    top: 4px;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-item:hover::before {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.5);
}

.timeline-item:hover::after { opacity: 1; }

.timeline-year {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.timeline-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    margin: 64px 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.stats-row .stat-box {
    background: var(--bg-card);
    padding: 40px 32px;
    text-align: center;
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-row .stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.stats-row .stat-box:hover              { background: var(--bg-card-hover); }
.stats-row .stat-box:hover::before      { width: 100%; }

.stats-row .stat-box .stat-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    color: var(--accent);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    display: block;
}

.stats-row .stat-box .stat-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

/* Full-width Image Banner */
.image-banner {
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.image-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(var(--accent-rgb), 0.08), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.image-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    filter: saturate(0.7) brightness(0.9);
    transition: filter 0.6s ease;
}

.image-banner:hover img {
    filter: saturate(0.85) brightness(0.95);
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.info-box {
    background: var(--bg-card);
    padding: 28px 28px 28px 26px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(var(--accent-rgb), 0.04), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.info-box:hover {
    border-left-color: var(--accent-light);
    transform: translateX(4px);
}

.info-box:hover::before { opacity: 1; }

.info-box h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 12px;
}

.info-box p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Team Detail Grid */
.team-detail-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.team-detail-grid:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.team-detail-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform 0.4s ease;
    filter: saturate(0.8);
}

.team-detail-grid:hover .team-detail-img {
    transform: scale(1.02);
    filter: saturate(1);
}

.team-detail-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: var(--text);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.team-detail-info .team-role {
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

.team-detail-info p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.team-detail-info .team-meta {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.team-detail-info .team-meta div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-detail-info .team-meta label {
    font-size: 0.68rem;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

.team-detail-info .team-meta span {
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 500;
}

/* Contact Page Grid */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    position: relative;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(var(--accent-rgb), 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-rgb), 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.map-container::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.5),
                0 0 40px rgba(var(--accent-rgb), 0.2);
    animation: mapPulse 2s ease-in-out infinite;
}

@keyframes mapPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.5); opacity: 0.6; }
}

/* Job Listings */
.job-listing {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.job-listing::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.3s ease;
    border-radius: 2px;
}

.job-listing:hover             { padding-left: 16px; }
.job-listing:hover::before     { height: 100%; }
.job-listing:first-child       { padding-top: 0; }

.job-listing h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.job-listing .job-meta {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.job-listing .job-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.job-listing:hover .job-meta span {
    border-color: rgba(var(--accent-rgb), 0.2);
    color: var(--text);
}

.job-apply {
    font-size: 0.78rem;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-radius: var(--radius-sm);
    background: var(--accent-muted);
}

.job-apply:hover {
    background: rgba(var(--accent-rgb), 0.15);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.1);
    gap: 12px;
}

.job-apply::after { content: '→'; transition: transform 0.3s ease; }
.job-apply:hover::after { transform: translateX(4px); }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
    .about-grid,
    .operations-grid,
    .contact-inner,
    .two-col,
    .two-col-offset,
    .contact-page-grid,
    .platform-split-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .team-grid { grid-template-columns: repeat(2, 1fr); }

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

    .hero-stats { gap: 32px; }

    .testimonial-slide { padding: 0 40px; }

    .cursor-dot,
    .cursor-ring { display: none; }

    .parallax-quote { background-attachment: scroll; }

    .values-grid,
    .info-boxes { grid-template-columns: 1fr 1fr; gap: 20px; }

    .stats-row { grid-template-columns: repeat(2, 1fr); }

    .team-detail-grid { grid-template-columns: 1fr; gap: 32px; }

    .team-detail-img { max-width: 280px; }

    .infra-strip {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .infra-strip-item:nth-child(3) { border-right: none; }

    .trust-bar-inner {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .trust-item { padding: 0 20px; }

    .page-hero-content::before { display: none; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
    body::before { background-size: 40px 40px; }

    .nav-links  { display: none; }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .logo {
        font-size: 1.2rem;
        white-space: nowrap;
    }

    .logo::before { width: 6px; height: 6px; }

    .nav-cta { display: none; }

    .nav-container {
        padding: 0 20px;
        height: 60px;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        height: auto;
        padding-top: 60px;
    }

    .hero::after { width: 200px; height: 200px; top: 5%; right: -10%; }

    .hero-content { padding: 40px 20px 80px; }

    .hero-tag {
        margin-bottom: 16px;
        font-size: 0.65rem;
        letter-spacing: 1.5px;
        padding: 6px 12px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.12;
        margin-bottom: 24px;
        letter-spacing: -0.5px;
    }

    .hero-sub {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .hero-actions {
        flex-direction: column;
        margin-bottom: 32px;
        gap: 12px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.8rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px 20px;
        padding-top: 28px;
    }

    .stat-number { font-size: 1.8rem; }
    .stat-label  { font-size: 0.65rem; }

    /* Sections */
    section { padding: 80px 20px; }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .operations       { padding: 80px 0; }
    .operations-inner,
    .contact-inner    { padding-left: 20px; padding-right: 20px; }

    /* Platform split */
    .platform-split   { padding: 64px 20px; }
    .platform-img     { aspect-ratio: 16/9; }

    /* Trust bar */
    .trust-bar {
        padding: 16px 20px;
        overflow-x: auto;
    }

    .trust-bar-inner {
        flex-wrap: nowrap;
        min-width: max-content;
        justify-content: flex-start;
    }

    .trust-item { padding: 0 16px; font-size: 0.75rem; }

    /* Infra strip */
    .infra-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: var(--border);
    }

    .infra-strip-item {
        border-right: none;
        background: var(--bg-card);
    }

    /* About */
    .about-badge  { display: none; }
    .about-metrics { flex-direction: column; gap: 20px; }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer { padding: 60px 20px 30px; }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom .disclaimer { text-align: center; }

    /* Forms */
    .form-row     { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 20px; }

    /* Testimonials */
    .testimonial-slide { padding: 0 20px; }

    /* Scroll indicator */
    .scroll-indicator { display: none; }

    /* Parallax */
    .parallax-quote { padding: 100px 20px; }

    /* Inner pages */
    .page-hero    { min-height: 340px; }

    .page-hero-content { padding: 0 24px 40px; }

    .page-hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        letter-spacing: -0.5px;
    }

    .breadcrumbs         { padding: 12px 24px; }
    .breadcrumbs-inner   { font-size: 0.68rem; }

    .page-content,
    .page-content-narrow { padding: 64px 24px; }

    .values-grid,
    .info-boxes { grid-template-columns: 1fr; }

    .stats-row { grid-template-columns: 1fr 1fr; gap: 1px; }

    .stats-row .stat-box    { padding: 28px 20px; }
    .stats-row .stat-box .stat-val { font-size: 1.8rem; }

    .job-listing {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 0;
    }

    .job-listing:hover { padding-left: 8px; }
    .job-apply         { align-self: flex-start; }

    .team-detail-info .team-meta {
        flex-direction: column;
        gap: 20px;
    }

    .team-detail-img { max-width: 240px; }

    .cta-banner { padding: 64px 24px; }

    .map-container { height: 300px; }

    .timeline  { padding-left: 36px; }

    .image-banner img { height: 260px; }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.8rem, 9vw, 2.2rem);
    }

    .hero-stats { gap: 16px; }
    .stat-number { font-size: 1.5rem; }

    .markets-grid { gap: 16px; }
    .market-card  { padding: 28px 20px; }

    .stats-row { grid-template-columns: 1fr; }

    .team-detail-grid { gap: 24px; }
    .contact-page-grid { gap: 40px; }

    .values-grid { gap: 16px; }
    .value-card  { padding: 24px 20px; }

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