/* =========================================================
   OpExCore Design System — 2026
   Fresh, hand-crafted SaaS aesthetic
   ========================================================= */

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --navy: #070b16;
    --navy-mid: #0d1425;
    --navy-light: #131c34;
    --blue: #3b82f6;
    --blue-hover: #2563eb;
    --blue-deep: #1e40af;
    --blue-light: #dbeafe;
    --blue-glow: rgba(59,130,246,0.25);
    --teal: #14b8a6;
    --teal-glow: rgba(20,184,166,0.2);
    --gold: #f59e0b;
    --off-white: #fafafa;
    --surface: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 48px rgba(0,0,0,0.1);
    --shadow-glow-blue: 0 0 40px rgba(59,130,246,0.15);
    --shadow-glow-teal: 0 0 40px rgba(20,184,166,0.12);
}

* { box-sizing: border-box; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--gray-800);
    overflow-x: hidden;
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .display-text {
    font-family: 'Fraunces', serif;
    letter-spacing: -0.02em;
}


/* ===== NOISE TEXTURE OVERLAY (subtle grain) ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.018;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}


/* ===== NAVBAR ===== */
.navbar-landing {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-landing > .container {
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 100px;
    padding: 0.6rem 1.5rem;
    max-width: 860px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-landing.scrolled > .container {
    background: rgba(10, 15, 30, 0.88);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.05);
}

.navbar-brand-text {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff !important;
    letter-spacing: -0.01em;
}
.navbar-brand-text span { color: var(--blue); }

.nav-link-landing {
    color: rgba(255,255,255,0.65) !important;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.4rem 0.85rem !important;
    transition: color 0.2s;
    border-radius: 8px;
}
.nav-link-landing:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.05);
}

.btn-nav-login {
    background: var(--blue);
    color: #fff !important;
    border: none;
    padding: 0.45rem 1.2rem !important;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s;
}
.btn-nav-login:hover {
    background: var(--blue-hover);
    box-shadow: 0 4px 16px rgba(59,130,246,0.35);
    transform: translateY(-1px);
}


/* ===== HERO (Index Page) ===== */
.hero {
    background: var(--navy);
    padding: 11rem 0 7rem;
    position: relative;
    overflow: hidden;
}

/* Gradient mesh orbs */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, rgba(59,130,246,0.04) 40%, transparent 70%);
    pointer-events: none;
    animation: float-orb 12s ease-in-out infinite;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20,184,166,0.12) 0%, rgba(20,184,166,0.03) 40%, transparent 70%);
    pointer-events: none;
    animation: float-orb 15s ease-in-out infinite reverse;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Dot grid overlay on hero */
.hero > .container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.hero h1 {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p.lead {
    color: rgba(255,255,255,0.55);
    font-size: 1.15rem;
    max-width: 500px;
    line-height: 1.75;
}

.btn-hero {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 100px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-hero-primary {
    background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(59,130,246,0.3);
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59,130,246,0.4);
    color: #fff;
}
.btn-hero-outline {
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.12);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateY(-2px);
}

.hero-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 3.5rem;
}
.hero-metric { text-align: center; }
.hero-metric-value {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-metric-label {
    color: rgba(255,255,255,0.35);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}


/* ===== FEATURE HERO (Feature Pages) ===== */
.feature-hero {
    background: var(--navy);
    padding: 9rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.feature-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--page-glow, rgba(59,130,246,0.15)) 0%, transparent 70%);
    pointer-events: none;
    animation: float-orb 12s ease-in-out infinite;
}

.feature-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20,184,166,0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float-orb 15s ease-in-out infinite reverse;
}

.feature-hero h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.feature-hero p {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    line-height: 1.7;
}

.feature-hero .badge-module {
    font-size: 0.78rem;
    padding: 0.4rem 1.1rem;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.06);
}


/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
    position: relative;
}
.section-alt {
    background: var(--gray-50);
    position: relative;
}

/* Dot grid on alternate sections */
.section-alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--gray-200) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
    pointer-events: none;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.section-subtitle {
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}
.section-label {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}


/* ===== FEATURE CARDS (Index) ===== */
.feature-card {
    background: var(--surface);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: visible;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animated gradient border on hover */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, var(--blue), var(--teal), var(--blue));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

/* Ensure child elements (like "MOST POPULAR" badge) sit above the gradient border */
.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-blue);
    border-color: transparent;
}
.feature-card:hover::before {
    opacity: 1;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-3deg);
}

.feature-card h5 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}
.feature-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}


/* ===== FEATURE PAGE CONTENT ===== */
.feature-text h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.feature-text p {
    color: var(--gray-500);
    line-height: 1.8;
    font-size: 0.95rem;
}

.feature-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    padding: 0.4rem 0;
}
.feature-check i {
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}
.feature-check span {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.5;
}


/* ===== SCREENSHOT CONTAINERS ===== */
.screenshot-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
}

/* Subtle glow behind screenshot */
.screenshot-container::after {
    content: '';
    position: absolute;
    inset: -20%;
    background: radial-gradient(ellipse at center, var(--page-glow, rgba(59,130,246,0.06)) 0%, transparent 70%);
    z-index: -1;
    transition: opacity 0.5s;
    opacity: 0;
}

.screenshot-container:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(59,130,246,0.08);
}
.screenshot-container:hover::after {
    opacity: 1;
}

.screenshot-container img {
    width: 100%;
    height: auto;
    display: block;
}


/* ===== HIGHLIGHTS BAR ===== */
.highlights-bar {
    background: var(--navy-mid);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* Subtle grid on highlights bar */
.highlights-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.highlight-value {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
}
.highlight-label {
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
    margin-top: 0.25rem;
}


/* ===== HOW IT WORKS ===== */
.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 1.2rem;
    position: relative;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
    transition: transform 0.3s ease;
}
.step-number:hover {
    transform: scale(1.1);
}

.step-card {
    text-align: center;
    padding: 1.5rem;
}
.step-card h5 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}
.step-card p {
    color: var(--gray-500);
    font-size: 0.88rem;
    line-height: 1.65;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -60%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), transparent);
    opacity: 0.3;
}


/* ===== ROI CALCULATOR ===== */
.roi-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}
.roi-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff;
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}
.roi-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 70%);
    pointer-events: none;
}

.roi-body { padding: 2rem; }

.roi-result {
    background: linear-gradient(135deg, #059669, #14b8a6);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.roi-result::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
    pointer-events: none;
}

.roi-result-value {
    font-family: 'Fraunces', serif;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.roi-result-label {
    font-size: 0.88rem;
    opacity: 0.8;
}

.roi-secondary {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--gray-100);
}
.roi-secondary-value {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue);
}

.form-range::-webkit-slider-thumb {
    background: var(--blue);
    box-shadow: 0 0 8px rgba(59,130,246,0.3);
}
.form-range::-webkit-slider-runnable-track {
    background: var(--gray-200);
}


/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
}
.testimonial-card .stars {
    color: var(--gold);
    margin-bottom: 1rem;
}
.testimonial-card blockquote {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}
.testimonial-author { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { color: var(--gray-500); font-size: 0.8rem; }


/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--navy);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: float-orb 10s ease-in-out infinite;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20,184,166,0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float-orb 13s ease-in-out infinite reverse;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.2rem;
    letter-spacing: -0.02em;
}
.cta-section p {
    color: rgba(255,255,255,0.5);
}

/* CTA buttons */
.cta-section .btn {
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta-section .btn:hover {
    transform: translateY(-2px);
}


/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.45);
    padding: 3rem 0 1.5rem;
    font-size: 0.88rem;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.footer a:hover { color: #fff; }
.footer h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}


/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for child elements */
.row > .fade-up:nth-child(2) { transition-delay: 0.08s; }
.row > .fade-up:nth-child(3) { transition-delay: 0.16s; }
.row > .fade-up:nth-child(4) { transition-delay: 0.24s; }
.row > .fade-up:nth-child(5) { transition-delay: 0.32s; }
.row > .fade-up:nth-child(6) { transition-delay: 0.4s; }

/* Fade-in for feature checks */
.visible .feature-check {
    animation: check-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.visible .feature-check:nth-child(1) { animation-delay: 0.1s; }
.visible .feature-check:nth-child(2) { animation-delay: 0.18s; }
.visible .feature-check:nth-child(3) { animation-delay: 0.26s; }
.visible .feature-check:nth-child(4) { animation-delay: 0.34s; }

@keyframes check-in {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero { padding: 8rem 0 4rem; }
    .hero h1 { font-size: 2.4rem; }
    .hero-metrics { flex-wrap: wrap; gap: 1.2rem; }
    .feature-hero { padding: 7.5rem 0 3rem; }
    .feature-hero h1 { font-size: 2.2rem; }
    .section { padding: 4rem 0; }
    .section-title { font-size: 1.8rem; }
    .step-connector { display: none; }
    .navbar-landing > .container {
        border-radius: 14px;
        padding: 0.5rem 1rem;
    }
    .screenshot-container:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .feature-hero h1 { font-size: 1.8rem; }
    .section { padding: 3rem 0; }
}


/* ===== PAGE-SPECIFIC ACCENT COLORS ===== */
/* Actions page - blue */
.page-actions { --page-accent: #3b82f6; --page-glow: rgba(59,130,246,0.15); }
.page-actions .feature-check i { color: var(--teal); }
.page-actions .highlight-value { color: #3b82f6; }

/* AI page - violet */
.page-ai { --page-accent: #8b5cf6; --page-glow: rgba(139,92,246,0.15); }
.page-ai .feature-check i { color: #8b5cf6; }
.page-ai .highlight-value { color: #8b5cf6; }

/* Ideas page - amber */
.page-ideas { --page-accent: #f59e0b; --page-glow: rgba(245,158,11,0.12); }
.page-ideas .feature-check i { color: var(--teal); }
.page-ideas .highlight-value { color: #3b82f6; }

/* Lean tools page - amber/gold */
.page-lean-tools { --page-accent: #f59e0b; --page-glow: rgba(245,158,11,0.12); }
.page-lean-tools .feature-check i { color: var(--teal); }
.page-lean-tools .highlight-value { color: #f59e0b; }

/* Projects page - green */
.page-projects { --page-accent: #10b981; --page-glow: rgba(16,185,129,0.15); }
.page-projects .feature-check i { color: var(--teal); }
.page-projects .highlight-value { color: #3b82f6; }

/* Reports page - red/rose */
.page-reports { --page-accent: #f43f5e; --page-glow: rgba(244,63,94,0.12); }
.page-reports .feature-check i { color: #f43f5e; }
.page-reports .highlight-value { color: #f43f5e; }


/* ===== UTILITY ===== */
::selection {
    background: rgba(59,130,246,0.2);
    color: inherit;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Better focus states */
:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Dashboard preview card in hero */
.hero .col-lg-5 > div {
    border: 1px solid rgba(255,255,255,0.06) !important;
    background: rgba(255,255,255,0.03) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04);
}
