/* Cloosi Landing Page Styles - Exact React Match */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: hsl(225 15% 8%);
    color: hsl(220 15% 95%);
    font-family: system-ui, -apple-system, sans-serif;
}

/* Button Styles - Exact React behavior */
.btn-hero {
    background: linear-gradient(135deg, hsl(280 100% 70%), hsl(320 100% 75%));
    color: hsl(225 15% 8%);
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

.btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px hsl(280 100% 70% / 0.3);
}

.btn-secondary {
    background: hsl(225 15% 15%);
    color: hsl(220 15% 85%);
    border: 1px solid hsl(225 15% 20%);
    border-radius: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

.btn-secondary:hover {
    background: hsl(225 15% 18%);
    transform: translateY(-2px);
}

/* How It Works Cards - Exact React component behavior */
.hiw-card {
    background: hsl(225 15% 10%);
    border: 1px solid hsl(225 15% 20%);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.hiw-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -5px hsl(225 15% 5% / 0.5);
}

.hiw-card.active {
    border-color: hsl(280 100% 70%);
    box-shadow: 0 0 30px hsl(280 100% 70% / 0.3);
    background: hsl(225 15% 12%);
}

.hiw-card.active h4 {
    color: hsl(280 100% 70%);
}

.hiw-card h4 {
    color: hsl(220 15% 95%);
    transition: color 0.3s ease;
}

.hiw-card .hiw-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(280 100% 70% / 0.10);
    color: hsl(280 100% 70%);
    font-weight: 700;
}

/* Gradient text - Exact match to React */
.bg-gradient-primary {
    background: linear-gradient(135deg, hsl(280 100% 70%), hsl(320 100% 75%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Utility classes */
.hover-scale:hover {
    transform: scale(1.05);
}

.transition-smooth {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}