/* Brand Identity & Logo Evolution */
.brand-identity-section {
    padding: 2rem;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Original Pursuit Hero Background */
.pursuit-hero-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(4, 217, 217, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

/* Specific styling for Pursuit Page Title: Large, Static Position, Animated Color */
.pursuit-page-header .hero-title {
    font-size: 5rem !important;
    /* Keep large size */
    font-weight: 900 !important;
    transform: none !important;
    /* Keep position static (no mouse parallax) */
    /* Gradient animation restored by removing overrides */
    /* Removed text-shadow to prevent muddy gradient colors */
}

/* Original Glass Card Styles from Backup */
.glass-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover::before {
    opacity: 1;
}

.hover-glow {
    position: relative;
    z-index: 1;
}

.hover-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: var(--accent-gradient);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(15px);
}

.glass-card:hover .hover-glow::after {
    opacity: 0.4;
}

/* Staggered Animation Delays */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

/* Original Card Icons with 3D Flip */
.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: var(--color-cyan);
    transition: all 0.6s ease;
}

.glass-card:hover .card-icon {
    background: var(--accent-gradient);
    color: white;
    transform: rotateY(360deg);
}

.logo-comparison-wrapper,
.color-palette-wrapper {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
}

.img-comp-container {
    position: relative;
    height: 300px;
    width: 300px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: col-resize;
    user-select: none;
}

/* Original Slider Logic: width/height auto for JS control */
.img-comp-img {
    position: absolute;
    width: auto;
    height: auto;
    overflow: hidden;
    background-color: #1e293b;
}

.img-comp-img img {
    display: block;
    max-width: none;
    /* Fix: Override global max-width: 100% to prevent shrinking */
    /* Removed fixed dimensions to let intrinsic size work or control via container */
}

.comp-slider-handle {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: ew-resize;
    opacity: 0;
    transition: transform 0.1s, opacity 0.2s ease;
}

.img-comp-container:hover .comp-slider-handle,
.img-comp-container.dragging .comp-slider-handle {
    opacity: 1;
}

/* Color Palette */
.color-palette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.color-swatch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.color-code {
    font-size: 0.85rem;
    color: #cbd5e1;
    font-family: monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

@media (max-width: 968px) {
    .identity-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
}