/* Animation keyframes and utility classes */

/* Premium Hero Phone Glow Effect - howitworks.html */
.hero-phone-glow-container {
    position: relative;
    display: inline-block;
}

/* Main orange glow behind phone */
.hero-phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    background: radial-gradient(circle,
        rgba(255,140,0,0.30) 0%,
        rgba(255,120,0,0.18) 35%,
        rgba(255,90,0,0.08) 60%,
        transparent 80%);
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
}

/* White glass glow above phone */
.hero-phone-glass-glow {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(90px);
    z-index: 1;
    pointer-events: none;
}

/* Glass reflection behind phone */
.hero-phone-glass-reflection {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    z-index: 2;
    pointer-events: none;
}

/* Ambient lighting - top right orange blob */
.hero-ambient-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: rgba(255, 140, 0, 0.18);
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

/* Ambient lighting - bottom left orange blob */
.hero-ambient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 220px;
    height: 220px;
    background: rgba(255, 140, 0, 0.12);
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
}

/* Phone with soft shadow */
.hero-phone-mockup {
    position: relative;
    z-index: 3;
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.45),
        0 0 120px rgba(255, 120, 0, 0.18);
}

/* Equalizer bar animations */
@keyframes equalizer-1 {
    0%, 100% { height: 0.75rem; }
    25% { height: 0.5rem; }
    50% { height: 1rem; }
    75% { height: 0.6rem; }
}
@keyframes equalizer-2 {
    0%, 100% { height: 1rem; }
    25% { height: 0.75rem; }
    50% { height: 1.25rem; }
    75% { height: 0.8rem; }
}
@keyframes equalizer-3 {
    0%, 100% { height: 0.625rem; }
    25% { height: 0.4rem; }
    50% { height: 1rem; }
    75% { height: 0.5rem; }
}
@keyframes equalizer-4 {
    0%, 100% { height: 0.875rem; }
    25% { height: 0.6rem; }
    50% { height: 1.125rem; }
    75% { height: 0.7rem; }
}
@keyframes equalizer-5 {
    0%, 100% { height: 0.5rem; }
    25% { height: 0.3rem; }
    50% { height: 0.875rem; }
    75% { height: 0.4rem; }
}
@keyframes equalizer-6 {
    0%, 100% { height: 1rem; }
    25% { height: 0.6rem; }
    50% { height: 1.25rem; }
    75% { height: 0.7rem; }
}
@keyframes equalizer-7 {
    0%, 100% { height: 0.625rem; }
    25% { height: 0.4rem; }
    50% { height: 1rem; }
    75% { height: 0.5rem; }
}
@keyframes equalizer-8 {
    0%, 100% { height: 0.75rem; }
    25% { height: 0.5rem; }
    50% { height: 1rem; }
    75% { height: 0.6rem; }
}
.animate-equalizer-1 { animation: equalizer-1 1.2s ease-in-out infinite; }
.animate-equalizer-2 { animation: equalizer-2 1.4s ease-in-out infinite; }
.animate-equalizer-3 { animation: equalizer-3 1.1s ease-in-out infinite; }
.animate-equalizer-4 { animation: equalizer-4 1.3s ease-in-out infinite; }
.animate-equalizer-5 { animation: equalizer-5 1.2s ease-in-out infinite; }
.animate-equalizer-6 { animation: equalizer-6 1.5s ease-in-out infinite; }
.animate-equalizer-7 { animation: equalizer-7 1.1s ease-in-out infinite; }
.animate-equalizer-8 { animation: equalizer-8 1.3s ease-in-out infinite; }

/* Avatar pulse animation */
@keyframes avatar-pulse {
    0% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Fade in up animation for pricing cards */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Waveform oscillate animation */
@keyframes waveform-oscillate {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* Pulse element animation class */
.pulse-element { 
    animation: avatar-pulse 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite; 
}

@media (prefers-reduced-motion: reduce) {
    .pulse-element {
        animation: none;
        opacity: 0.6;
    }
}

/* Enhanced orange glow for phone edges and floating icons */
.phone-glow-pulse {
    animation: avatar-pulse 2.5s ease-in-out infinite;
    box-shadow: 0 0 20px 6px rgba(249, 115, 22, 0.6);
}

/* Voice ring container - positioned around avatar */
.voice-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
}

/* The animated ring */
.voice-ring::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2.5px solid rgba(249, 115, 22, 0.35);
    box-shadow: 
        0 0 8px rgba(249, 115, 22, 0.25),
        0 0 16px rgba(249, 115, 22, 0.15),
        inset 0 0 8px rgba(249, 115, 22, 0.1);
    animation: voice-ring-breathe 4s ease-in-out infinite;
    opacity: 0.35;
}

/* Breathing animation - subtle expand/contract with opacity pulse */
@keyframes voice-ring-breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.35;
        box-shadow: 
            0 0 8px rgba(249, 115, 22, 0.25),
            0 0 16px rgba(249, 115, 22, 0.15),
            inset 0 0 8px rgba(249, 115, 22, 0.1);
    }
    50% {
        transform: scale(1.04);
        opacity: 0.7;
        box-shadow: 
            0 0 12px rgba(249, 115, 22, 0.4),
            0 0 24px rgba(249, 115, 22, 0.25),
            inset 0 0 12px rgba(249, 115, 22, 0.15);
    }
}

@media (prefers-reduced-motion: reduce) {
    .voice-ring::before {
        animation: none;
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Improved online indicator pulse */
.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border: 3px solid #020205;
    border-radius: 50%;
    z-index: 10;
    animation: online-pulse 2.5s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
}

@keyframes online-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
        transform: scale(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .online-indicator {
        animation: none;
        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
    }
}

/* Status pulse dot */
.status-pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: online-pulse 2s ease-in-out infinite;
}

/* Shimmer animation for badge */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.animate-shimmer {
    animation: shimmer 2s infinite;
}

/* Grid pattern background */
.bg-grid-pattern {
    background-size: 32px 32px;
    background-image: linear-gradient(to right, rgba(249, 115, 22, 0.015) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(249, 115, 22, 0.015) 1px, transparent 1px);
}

.light .bg-grid-pattern {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.015) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
}

/* Waveform bar animation - DEPRECATED, kept for backward compatibility */
.waveform-bar {
    transform-origin: bottom;
    animation: waveform-oscillate 1.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .waveform-bar {
        animation: none;
        transform: scaleY(0.7);
    }
}

/* State container for waveform */
.state-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced avatar breathing halo */
@keyframes avatar-halo-breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.08;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.18;
    }
}

.avatar-halo {
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.25) 0%, rgba(249, 115, 22, 0.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: avatar-halo-breathe 5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .avatar-halo {
        animation: none;
        opacity: 0.12;
    }
}

/* Phone CTA button styling - updated for premium feel */
.phone-cta-button {
    margin-top: auto;
    padding: 0.875rem 1.75rem;
    background: rgba(249, 115, 22, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f97316;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 5;
}

.phone-cta-button:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.15);
}

.phone-cta-button:active {
    transform: translateY(0) scale(0.98);
}

.light .phone-cta-button {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.2);
}

.light .phone-cta-button:hover {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
}

/* Premium Phone Mockup - Hardware Realism */
.phone-mockup-container {
    position: relative;
    width: 320px;
    height: 720px;
    border-radius: 44px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 50%, #0a0a12 100%);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 12px 32px rgba(0, 0, 0, 0.4),
        0 24px 64px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(249, 115, 22, 0.08),
        0 0 40px rgba(249, 115, 22, 0.06),
        0 0 80px rgba(249, 115, 22, 0.03);
    overflow: hidden;
}

/* Metal frame - the premium metal band around the phone */
.phone-mockup-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 44px;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 20%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.2) 80%,
        rgba(255, 255, 255, 0.04) 100%
    );
    pointer-events: none;
    z-index: 10;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        inset 1px 0 0 rgba(255, 255, 255, 0.08),
        inset -1px 0 0 rgba(0, 0, 0, 0.2);
}

/* Glass layer - subtle glass reflection overlay */
.phone-mockup-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 44px;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 15%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.02) 85%,
        rgba(0, 0, 0, 0.05) 100%
    );
    pointer-events: none;
    z-index: 11;
}

/* Dynamic Island - premium, minimal, centered */
.dynamic-island {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 126px;
    height: 30px;
    background: #000;
    border-radius: 15px;
    z-index: 20;
    pointer-events: none;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
}

/* Dynamic Island inner cutout effect */
.dynamic-island::before {
    content: '';
    position: absolute;
    inset: 1.5px;
    border-radius: 13.5px;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Screen recess - the display area recessed inside the frame */
.phone-screen {
    position: absolute;
    inset: 42px 10px 10px 10px;
    border-radius: 30px;
    background: #020205;
    overflow: hidden;
    z-index: 5;
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Screen content area - where demo screens live */
.phone-screen > .demo-screen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 28px 24px 24px 24px;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Larger phone mockup (homepage) - increased padding */
.desktop-phone-mockup .phone-screen > .demo-screen {
    padding: 32px 28px 28px 28px;
}

/* Shift avatar/waveform up on homepage to give more space for status rotator */
.desktop-phone-mockup .demo-screen .flex.flex-col.items-center.flex-grow.justify-center {
    margin-top: -35px !important;
    margin-bottom: 5px !important;
}

.desktop-phone-mockup .status-rotator {
    margin-top: 0 !important;
    margin-bottom: 15px !important;
}

/* Smaller phone mockup (howitworks) - reduced padding */
.howitworks-phone-mockup .phone-screen > .demo-screen {
    padding: 22px 18px 18px 18px;
}

.howitworks-phone-mockup .demo-screen .flex.flex-col.items-center.flex-grow.justify-center {
    margin-top: -10px !important;
    margin-bottom: 4px !important;
}

.howitworks-phone-mockup .status-rotator {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
}

/* Hide inactive screens */
.phone-screen > .demo-screen:not(.active) {
    display: none;
}

/* Glass reflection overlay on screen */
.phone-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.02) 0%,
        transparent 20%,
        transparent 80%,
        rgba(0, 0, 0, 0.03) 100%
    );
    pointer-events: none;
    z-index: 10;
}

/* Subtle diagonal reflection - premium glass feel */
.phone-screen::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(115deg,
        transparent 40%,
        rgba(255, 255, 255, 0.015) 48%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.015) 52%,
        transparent 60%
    );
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: 11;
    opacity: 0.6;
    animation: glass-sheen 8s ease-in-out infinite;
}

@keyframes glass-sheen {
    0%, 100% { transform: translateX(-100%) rotate(-15deg); opacity: 0; }
    10% { opacity: 0.4; }
    20% { opacity: 0; }
    50% { transform: translateX(100%) rotate(-15deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .phone-screen::after {
        animation: none;
        opacity: 0;
    }
}

/* Light mode adjustments */
.light .phone-mockup-container {
    background: linear-gradient(145deg, #e8e8ed 0%, #d0d0d8 50%, #b8b8c0 100%);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 12px 32px rgba(0, 0, 0, 0.12),
        0 24px 64px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(249, 115, 22, 0.06),
        0 0 40px rgba(249, 115, 22, 0.04),
        0 0 80px rgba(249, 115, 22, 0.02);
}

.light .phone-mockup-container::before {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.1) 80%,
        rgba(255, 255, 255, 0.2) 100%
    );
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        inset 1px 0 0 rgba(255, 255, 255, 0.4),
        inset -1px 0 0 rgba(0, 0, 0, 0.08);
}

.light .phone-mockup-container::after {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 15%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.02) 85%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

.light .dynamic-island {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.light .dynamic-island::before {
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
}

.light .phone-screen {
    background: #020205;
}

.light .phone-screen::before {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 20%,
        transparent 80%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

/* Status rotator - JS handles active class toggling for rotation */

.status-item {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.status-item.active {
    display: inline-flex;
}

/* Scroll hint bounce animation */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.scroll-hint-arrow { 
    animation: bounce 1.5s infinite ease-in-out; 
}

@media (prefers-reduced-motion: reduce) {
    .scroll-hint-arrow {
        animation: none;
    }
}

/* Marquee animation for industry pills */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-container {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .marquee-content {
        animation: none;
        will-change: auto;
    }
}

.marquee-content:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marquee-content {
        animation-duration: 45s;
    }
}

.industry-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(21, 21, 34, 0.4);
    background-color: rgba(11, 11, 16, 0.4);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.light .industry-pill {
    background-color: rgba(243, 244, 246, 0.6);
    border-color: rgba(209, 211, 215, 0.6);
}

.industry-pill:hover {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.15);
    transform: translateY(-2px);
}

.industry-pill svg {
    width: 1rem;
    height: 1rem;
    color: #a1a1aa;
    transition: color 0.3s ease;
}

.industry-pill:hover svg {
    color: #f97316;
}

.industry-pill span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e4e4e7;
    white-space: nowrap;
}

.light .industry-pill span {
    color: #374151;
}

/* Integration pill - same as industry pill */
.integration-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(21, 21, 34, 0.4);
    background-color: rgba(11, 11, 16, 0.4);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.light .integration-pill {
    background-color: rgba(243, 244, 246, 0.6);
    border-color: rgba(209, 211, 215, 0.6);
}

.integration-pill:hover {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.15);
    transform: translateY(-2px);
}

.integration-pill img {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.light .integration-pill img {
    filter: none;
}

.integration-pill:hover img {
    filter: brightness(0) saturate(100%) invert(46%) sepia(93%) saturate(1484%) hue-rotate(336deg) brightness(102%) contrast(101%);
}

/* For SVG files that have fill colors, we need to handle them differently */
.integration-pill svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: #a1a1aa;
    transition: color 0.3s ease;
}

.integration-pill:hover svg {
    color: #f97316;
}

.integration-pill span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e4e4e7;
    white-space: nowrap;
}

.light .integration-pill span {
    color: #374151;
}

@media (max-width: 768px) {
    .integration-pill {
        padding: 0.375rem 0.875rem;
        gap: 0.375rem;
    }
    
    .integration-pill span {
        font-size: 0.75rem;
    }
    
    .integration-pill img,
    .integration-pill svg {
        width: 1rem;
        height: 1rem;
    }
}

/* Timeline step styles */
.timeline-step {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.timeline-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-step:hover {
    transform: translateY(-4px);
}

/* Timeline line draw animation */
.timeline-line {
    width: 0;
    transition: width 1.2s ease-out;
}

.timeline-line.animate {
    width: 100%;
    background: var(--v-orange, #f97316);
}

@media (prefers-reduced-motion: reduce) {
    .timeline-line {
        width: 100%;
        transition: none;
    }
}

@media (max-width: 768px) {
    .industry-pill {
        padding: 0.375rem 0.875rem;
        gap: 0.375rem;
    }
    
    .industry-pill span {
        font-size: 0.75rem;
    }
    
    .industry-pill svg {
        width: 0.875rem;
        height: 0.875rem;
    }
}