:root {
    --fx-primary: #2563eb;
    --fx-secondary: #f97316;
    --fx-success: #16a34a;
    --fx-info: #0ea5e9;
    --fx-dark: #0f172a;
    --fx-surface: rgba(255, 255, 255, 0.88);
    --fx-border: rgba(15, 23, 42, 0.08);
    --grad-sky: linear-gradient(135deg, #e0f2ff 0%, #f5e8ff 100%);
    --grad-hero: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.24), transparent 55%),
                 radial-gradient(circle at 85% 0%, rgba(244, 114, 182, 0.18), transparent 52%),
                 radial-gradient(circle at 50% 100%, rgba(14, 165, 233, 0.18), transparent 55%),
                 #eff6ff;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--grad-sky);
    color: var(--fx-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: -260px;
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.12), transparent 55%),
                radial-gradient(circle at 80% 10%, rgba(244, 63, 94, 0.12), transparent 50%),
                radial-gradient(circle at 70% 82%, rgba(16, 163, 74, 0.08), transparent 55%);
    filter: blur(140px);
    opacity: 0.6;
    pointer-events: none;
    z-index: -5;
}

body::after {
    inset: auto -260px -260px -260px;
    transform: rotate(8deg);
    opacity: 0.45;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.4px;
}

.nav-link {
    font-weight: 500;
    color: var(--fx-dark);
    transition: color .2s ease, transform .2s ease;
}

.nav-link:hover {
    color: var(--fx-primary);
    transform: translateY(-1px);
}

.hero-section {
    background: var(--grad-hero);
    border: 1px solid rgba(59, 130, 246, 0.08);
    border-radius: 40px;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.hero-card {
    backdrop-filter: blur(22px);
    background: var(--fx-surface);
    box-shadow: 0 24px 56px -30px rgba(15, 23, 42, 0.55);
    border: 1px solid var(--fx-border);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.hero-card::after {
    content: '';
    position: absolute;
    inset: 20% -15% 15% 70%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, rgba(59, 130, 246, 0) 70%);
    opacity: 0.75;
    transform: rotate(12deg);
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: var(--fx-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 1.1rem;
}

.hero-title {
    font-size: clamp(2.3rem, 5vw, 3.15rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 1.08rem;
    line-height: 1.65;
    max-width: 720px;
}

.hero-actions .btn {
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 18px 30px -24px rgba(15, 23, 42, 0.35);
}

.hero-actions .btn-outline-primary {
    border-width: 2px;
}

.hero-highlights {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 1.25rem;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.08);
    color: rgba(15, 23, 42, 0.75);
    font-weight: 500;
}

.hero-search .input-group {
    box-shadow: 0 18px 45px -30px rgba(15, 23, 42, 0.4);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.hero-search .input-group-text {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: rgba(15, 23, 42, 0.5);
}

.hero-search .form-control {
    border: none;
    padding-left: 0.2rem;
    font-size: 1rem;
}

.hero-search .form-control:focus {
    box-shadow: none;
}

.hero-search .btn {
    padding: 0.85rem 2.4rem;
    font-weight: 600;
    border-radius: 0;
}

.hero-actions .btn {
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 18px 30px -24px rgba(15, 23, 42, 0.35);
}

.hero-actions .btn-outline-primary {
    border-width: 2px;
}

.hero-highlights {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 1.25rem;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.08);
    color: rgba(15, 23, 42, 0.75);
    font-weight: 500;
}

.hero-glow {
    position: absolute;
    inset: auto auto -120px -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.28), rgba(244, 63, 94, 0.06) 65%, transparent 100%);
    border-radius: 50%;
    filter: blur(12px);
    animation: pulseGlow 6s ease-in-out infinite;
}

.floating-badge {
    position: absolute;
    top: -18px;
    right: 30px;
    padding: 0.65rem 1.45rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(14, 165, 233, 0.95));
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 18px 30px -20px rgba(59, 130, 246, 0.75);
    animation: floatY 6.5s ease-in-out infinite;
}

.broker-card {
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background-color: #fff;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative;
    overflow: hidden;
}

.broker-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 24px 45px -24px rgba(15, 23, 42, 0.35);
}

.badge-gradient {
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.75rem;
    letter-spacing: .4px;
}

.gradient-orange { background: linear-gradient(135deg, #f97316, #facc15); }
.gradient-blue { background: linear-gradient(135deg, #2563eb, #38bdf8); }
.gradient-green { background: linear-gradient(135deg, #16a34a, #22d3ee); }
.gradient-purple { background: linear-gradient(135deg, #8b5cf6, #ec4899); }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    color: #fff;
}

.rating-stars {
    color: #facc15;
    letter-spacing: 2px;
}

.footer-link {
    color: inherit;
    text-decoration: none;
}

.footer-link:hover {
    color: #fff;
}

.newsletter-form .form-control {
    border-radius: 999px 0 0 999px;
    border: none;
    padding-left: 1.1rem;
}

.newsletter-form .btn {
    border-radius: 0 999px 999px 0;
}

.section-heading {
    font-size: clamp(1.9rem, 2.6vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.6px;
}

.section-subtitle {
    color: rgba(15, 23, 42, 0.65);
    max-width: 640px;
}

.list-badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--fx-primary);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.78rem;
}

.table-modern th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(15, 23, 42, 0.5);
}

.table-modern td {
    vertical-align: middle;
    font-size: 0.95rem;
}

.category-pill {
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background-color: #fff;
    padding: 10px 18px;
    font-weight: 500;
    transition: all .2s ease;
    white-space: nowrap;
}

.category-pill.active,
.category-pill:hover {
    border-color: var(--fx-primary);
    color: var(--fx-primary);
    box-shadow: 0 12px 20px -16px rgba(37, 99, 235, 0.45);
}

.article-card {
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
    overflow: hidden;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px -26px rgba(15, 23, 42, 0.45);
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    position: relative;
}

.pulse-indicator::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    animation: pulse 2.5s ease-in-out infinite;
}

.floating-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.6rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(14, 165, 233, 0.9));
    box-shadow: 0 18px 40px -26px rgba(37, 99, 235, 0.8);
    animation: floatY 8s ease-in-out infinite;
}

.animate-zoom,
.animate-slide {
    transition: transform .6s var(--fx-delay, 0s) ease, opacity .5s var(--fx-delay, 0s) ease;
    transform: none;
    opacity: 1;
}

body.reveal-ready .animate-zoom,
body.reveal-ready .animate-slide,
.in-view.animate-zoom,
.in-view.animate-slide {
    transform: none;
    opacity: 1;
}

.gradient-banner {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(250, 204, 21, 0.18));
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 22px;
    padding: 1rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.shine-card {
    position: relative;
}

.shine-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 35%, transparent 70%);
    transform: translateX(-120%);
}

.shine-card:hover::after {
    transform: translateX(220%);
    transition: transform .9s ease;
}

.accent-ring {
    position: absolute;
    inset: -120px;
    border-radius: 50%;
    border: 30px solid rgba(59, 130, 246, 0.12);
    filter: blur(8px);
}

.promo-chip {
    padding: 0.75rem 1.25rem;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--fx-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.filter-stack {
    gap: 0.6rem !important;
    flex-wrap: wrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.filter-stack .category-pill {
    padding-inline: 22px;
    font-weight: 600;
}

@media (min-width: 1200px) {
    .filter-stack {
        flex-wrap: nowrap;
        justify-content: flex-end;
        overflow: visible;
        padding-bottom: 0;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        border-radius: 16px;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 20px 35px -28px rgba(15, 23, 42, 0.4);
    }
}

@media (max-width: 575px) {
    .hero-card {
        border-radius: 22px;
        padding: 1.6rem;
    }

    .hero-search .btn {
        padding-inline: 1.6rem;
    }

    .hero-highlight {
        width: 100%;
    }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 0.78; transform: scale(1.08); }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.85; }
    45% { transform: scale(1.9); opacity: 0; }
    100% { transform: scale(1.9); opacity: 0; }
}

/* Claude Page Styles */
.claude-page * {
    font-family: 'Inter', sans-serif;
}

.claude-page .glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.claude-page .glass-dark {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.claude-page .gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.claude-page .card-hover {
    transition: all 0.3s ease;
}

.claude-page .card-hover:hover {
    transform: translateY(-4px);
}

.claude-page .rating-star {
    color: #fbbf24;
}

.claude-page .smooth-scroll {
    scroll-behavior: smooth;
}

.site-logo {
    max-height: 100px !important;
    width: auto !important;
}

@media (min-width: 768px) {
    .site-logo {
        max-height: 80px !important;
    }
}

