/* Influentize Website Styles */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=General+Sans:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    line-height: 1.6;
}

/* Typography */
.font-display {
    font-family: 'General Sans', sans-serif;
}

/* Influentize Brand Colors */
:root {
    --influentize-charcoal: #0D0E12;
    --influentize-ink: #1A1B1F;
    --influentize-orange: #FF6B35;
    --influentize-pink: #FF4D8D;
    --influentize-magenta: #E91E63;
    --influentize-purple: #9C27B0;
    --influentize-electric: #6EE7F9;
}

/* Background Colors */
.bg-influentize-charcoal { 
    background-color: var(--influentize-charcoal); 
}

.bg-influentize-ink { 
    background-color: var(--influentize-ink); 
}

.bg-black {
    background-color: #000000;
}

/* Text Colors */
.text-influentize-orange { 
    color: var(--influentize-orange); 
}

.text-influentize-pink { 
    color: var(--influentize-pink); 
}

.text-influentize-magenta { 
    color: var(--influentize-magenta); 
}

.text-influentize-purple { 
    color: var(--influentize-purple); 
}

.text-influentize-electric { 
    color: var(--influentize-electric); 
}

.text-white {
    color: #ffffff;
}

/* Gradient Text Effects */
.text-gradient {
    background: linear-gradient(135deg, var(--influentize-orange) 0%, var(--influentize-pink) 25%, var(--influentize-magenta) 50%, var(--influentize-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-glow {
    background: linear-gradient(135deg, var(--influentize-orange) 0%, var(--influentize-pink) 25%, var(--influentize-magenta) 50%, var(--influentize-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.3)) 
            drop-shadow(0 0 40px rgba(255, 77, 141, 0.2))
            drop-shadow(0 0 60px rgba(233, 30, 99, 0.1));
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--influentize-orange) 0%, var(--influentize-pink) 25%, var(--influentize-magenta) 50%, var(--influentize-purple) 100%);
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--influentize-orange);
    color: var(--influentize-orange);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.btn-secondary:hover {
    background: var(--influentize-orange);
    color: black;
}

/* Glass Effects */
.glass-nav {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-card {
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.w-full {
    width: 100%;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-x-8 > * + * {
    margin-left: 2rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

/* Grid Utilities */
.grid {
    display: grid;
}

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

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

/* Text Sizes */
.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.text-7xl {
    font-size: 4.5rem;
}

.text-8xl {
    font-size: 6rem;
}

/* Opacity Utilities */
.opacity-20 {
    opacity: 0.2;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-80 {
    opacity: 0.8;
}

/* Position Utilities */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

/* Display Utilities */
.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

/* Border Utilities */
.border {
    border-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* Background Gradients */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-influentize-orange {
    --tw-gradient-from: var(--influentize-orange);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 107, 53, 0));
}

.via-influentize-pink {
    --tw-gradient-stops: var(--tw-gradient-from), var(--influentize-pink), var(--tw-gradient-to, rgba(255, 77, 141, 0));
}

.via-influentize-magenta {
    --tw-gradient-stops: var(--tw-gradient-from), var(--influentize-magenta), var(--tw-gradient-to, rgba(233, 30, 99, 0));
}

.to-influentize-purple {
    --tw-gradient-to: var(--influentize-purple);
}

.to-transparent {
    --tw-gradient-to: transparent;
}

/* Animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes marquee {
    0% { 
        transform: translateX(100%); 
    }
    100% { 
        transform: translateX(-100%); 
    }
}

.marquee {
    animation: marquee 30s linear infinite;
}

/* Transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-200 {
    transition-duration: 200ms;
}

.duration-300 {
    transition-duration: 300ms;
}

/* Hover Effects */
.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:translate-y-2:hover {
    transform: translateY(-0.5rem);
}

.hover\:text-influentize-electric:hover {
    color: var(--influentize-electric);
}

.hover\:bg-influentize-orange:hover {
    background-color: var(--influentize-orange);
}

.hover\:text-black:hover {
    color: black;
}

/* Form Styles */
input, textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--influentize-electric);
}

/* Responsive Design */
@media (max-width: 768px) {
    .md\:hidden {
        display: none;
    }
    
    .md\:flex {
        display: flex;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .md\:flex-row {
        flex-direction: row;
    }
    
    .md\:text-4xl {
        font-size: 2.25rem;
    }
    
    .md\:text-5xl {
        font-size: 3rem;
    }
    
    .md\:text-6xl {
        font-size: 3.75rem;
    }
    
    .md\:text-7xl {
        font-size: 4.5rem;
    }
    
    .md\:text-8xl {
        font-size: 6rem;
    }
    
    .md\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .md\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .md\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .md\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    
    .md\:px-12 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .md\:py-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .md\:py-3 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .md\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .md\:py-6 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .md\:py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .md\:py-12 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .md\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .md\:mb-4 {
        margin-bottom: 1rem;
    }
    
    .md\:mb-6 {
        margin-bottom: 1.5rem;
    }
    
    .md\:mb-8 {
        margin-bottom: 2rem;
    }
    
    .md\:mb-12 {
        margin-bottom: 3rem;
    }
    
    .md\:mb-16 {
        margin-bottom: 4rem;
    }
    
    .md\:gap-4 {
        gap: 1rem;
    }
    
    .md\:gap-6 {
        gap: 1.5rem;
    }
    
    .md\:gap-8 {
        gap: 2rem;
    }
    
    .md\:gap-12 {
        gap: 3rem;
    }
    
    .md\:text-base {
        font-size: 1rem;
    }
    
    .md\:text-lg {
        font-size: 1.125rem;
    }
    
    .md\:text-xl {
        font-size: 1.25rem;
    }
    
    .md\:text-2xl {
        font-size: 1.5rem;
    }
    
    .md\:text-3xl {
        font-size: 1.875rem;
    }
    
    .md\:text-4xl {
        font-size: 2.25rem;
    }
    
    .md\:text-5xl {
        font-size: 3rem;
    }
    
    .md\:text-6xl {
        font-size: 3.75rem;
    }
    
    .md\:text-7xl {
        font-size: 4.5rem;
    }
    
    .md\:text-8xl {
        font-size: 6rem;
    }
    
    .md\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .md\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .md\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .md\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    
    .md\:px-12 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .md\:py-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .md\:py-3 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .md\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .md\:py-6 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .md\:py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .md\:py-12 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .md\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .md\:mb-4 {
        margin-bottom: 1rem;
    }
    
    .md\:mb-6 {
        margin-bottom: 1.5rem;
    }
    
    .md\:mb-8 {
        margin-bottom: 2rem;
    }
    
    .md\:mb-12 {
        margin-bottom: 3rem;
    }
    
    .md\:mb-16 {
        margin-bottom: 4rem;
    }
    
    .md\:gap-4 {
        gap: 1rem;
    }
    
    .md\:gap-6 {
        gap: 1.5rem;
    }
    
    .md\:gap-8 {
        gap: 2rem;
    }
    
    .md\:gap-12 {
        gap: 3rem;
    }
    
    .md\:text-base {
        font-size: 1rem;
    }
    
    .md\:text-lg {
        font-size: 1.125rem;
    }
    
    .md\:text-xl {
        font-size: 1.25rem;
    }
    
    .md\:text-2xl {
        font-size: 1.5rem;
    }
    
    .md\:text-3xl {
        font-size: 1.875rem;
    }
    
    .md\:text-4xl {
        font-size: 2.25rem;
    }
    
    .md\:text-5xl {
        font-size: 3rem;
    }
    
    .md\:text-6xl {
        font-size: 3.75rem;
    }
    
    .md\:text-7xl {
        font-size: 4.5rem;
    }
    
    .md\:text-8xl {
        font-size: 6rem;
    }
}

@media (max-width: 640px) {
    .sm\:hidden {
        display: none;
    }
    
    .sm\:flex {
        display: flex;
    }
    
    .sm\:flex-row {
        flex-direction: row;
    }
    
    .sm\:text-base {
        font-size: 1rem;
    }
    
    .sm\:text-lg {
        font-size: 1.125rem;
    }
    
    .sm\:text-xl {
        font-size: 1.25rem;
    }
    
    .sm\:text-2xl {
        font-size: 1.5rem;
    }
    
    .sm\:text-3xl {
        font-size: 1.875rem;
    }
    
    .sm\:text-4xl {
        font-size: 2.25rem;
    }
    
    .sm\:text-5xl {
        font-size: 3rem;
    }
    
    .sm\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .sm\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .sm\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    
    .sm\:px-12 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .sm\:py-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .sm\:py-3 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .sm\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .sm\:py-6 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .sm\:py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .sm\:py-12 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .sm\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .sm\:mb-4 {
        margin-bottom: 1rem;
    }
    
    .sm\:mb-6 {
        margin-bottom: 1.5rem;
    }
    
    .sm\:mb-8 {
        margin-bottom: 2rem;
    }
    
    .sm\:mb-12 {
        margin-bottom: 3rem;
    }
    
    .sm\:mb-16 {
        margin-bottom: 4rem;
    }
    
    .sm\:gap-4 {
        gap: 1rem;
    }
    
    .sm\:gap-6 {
        gap: 1.5rem;
    }
    
    .sm\:gap-8 {
        gap: 2rem;
    }
    
    .sm\:gap-12 {
        gap: 3rem;
    }
    
    .sm\:text-base {
        font-size: 1rem;
    }
    
    .sm\:text-lg {
        font-size: 1.125rem;
    }
    
    .sm\:text-xl {
        font-size: 1.25rem;
    }
    
    .sm\:text-2xl {
        font-size: 1.5rem;
    }
    
    .sm\:text-3xl {
        font-size: 1.875rem;
    }
    
    .sm\:text-4xl {
        font-size: 2.25rem;
    }
    
    .sm\:text-5xl {
        font-size: 3rem;
    }
    
    .sm\:text-6xl {
        font-size: 3.75rem;
    }
    
    .sm\:text-7xl {
        font-size: 4.5rem;
    }
    
    .sm\:text-8xl {
        font-size: 6rem;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .lg\:flex-row {
        flex-direction: row;
    }
    
    .lg\:text-4xl {
        font-size: 2.25rem;
    }
    
    .lg\:text-5xl {
        font-size: 3rem;
    }
    
    .lg\:text-6xl {
        font-size: 3.75rem;
    }
    
    .lg\:text-7xl {
        font-size: 4.5rem;
    }
    
    .lg\:text-8xl {
        font-size: 6rem;
    }
    
    .lg\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .lg\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .lg\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    
    .lg\:px-12 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .lg\:py-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .lg\:py-3 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .lg\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .lg\:py-6 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .lg\:py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .lg\:py-12 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .lg\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .lg\:mb-4 {
        margin-bottom: 1rem;
    }
    
    .lg\:mb-6 {
        margin-bottom: 1.5rem;
    }
    
    .lg\:mb-8 {
        margin-bottom: 2rem;
    }
    
    .lg\:mb-12 {
        margin-bottom: 3rem;
    }
    
    .lg\:mb-16 {
        margin-bottom: 4rem;
    }
    
    .lg\:gap-4 {
        gap: 1rem;
    }
    
    .lg\:gap-6 {
        gap: 1.5rem;
    }
    
    .lg\:gap-8 {
        gap: 2rem;
    }
    
    .lg\:gap-12 {
        gap: 3rem;
    }
    
    .lg\:text-base {
        font-size: 1rem;
    }
    
    .lg\:text-lg {
        font-size: 1.125rem;
    }
    
    .lg\:text-xl {
        font-size: 1.25rem;
    }
    
    .lg\:text-2xl {
        font-size: 1.5rem;
    }
    
    .lg\:text-3xl {
        font-size: 1.875rem;
    }
    
    .lg\:text-4xl {
        font-size: 2.25rem;
    }
    
    .lg\:text-5xl {
        font-size: 3rem;
    }
    
    .lg\:text-6xl {
        font-size: 3.75rem;
    }
    
    .lg\:text-7xl {
        font-size: 4.5rem;
    }
    
    .lg\:text-8xl {
        font-size: 6rem;
    }
}

/* Min-height utilities */
.min-h-screen {
    min-height: 100vh;
}

/* Width and height utilities */
.w-2 {
    width: 0.5rem;
}

.w-4 {
    width: 1rem;
}

.w-6 {
    width: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.w-16 {
    width: 4rem;
}

.w-20 {
    width: 5rem;
}

.w-96 {
    width: 24rem;
}

.w-auto {
    width: auto;
}

.h-2 {
    height: 0.5rem;
}

.h-4 {
    height: 1rem;
}

.h-6 {
    height: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-16 {
    height: 4rem;
}

.h-20 {
    height: 5rem;
}

.h-auto {
    height: auto;
}

/* Pointer events */
.pointer-events-none {
    pointer-events: none;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

/* Whitespace */
.whitespace-nowrap {
    white-space: nowrap;
}

/* Resize */
.resize-none {
    resize: none;
}

/* Focus styles */
.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

/* Disabled states */
.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

.disabled\:pointer-events-none:disabled {
    pointer-events: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--influentize-charcoal);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--influentize-orange), var(--influentize-pink));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--influentize-pink), var(--influentize-orange));
}
