/* ============================================
   ONYX SECURITY - STYLE.CSS
   Fichier de styles centralisé pour toutes les pages
   ============================================ */

/* ============================================
   1. VARIABLES CSS & CONFIGURATION DE BASE
   ============================================ */
:root {
    /* Couleurs principales */
    --color-accent: #00A3E0;
    --color-accent-hover: #0080b0;
    --color-accent-dark: #00597a;
    
    /* Couleurs de fond */
    --bg-primary: #030712;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #191919;
    
    /* Couleurs de texte */
    --text-primary: #ffffff;
    --text-secondary: #e5e7eb;
    --text-muted: #9ca3af;
    --text-dark: #6b7280;
    
    /* Couleurs de bordure */
    --border-primary: #1f2937;
    --border-secondary: #374151;
    --border-light: #4b5563;
    
    /* Messages de statut */
    --success-bg: #2b5a38;
    --success-text: #d4edda;
    --error-bg: #721c24;
    --error-text: #f8d7da;
    --warning-bg: #856404;
    --warning-text: #fff3cd;
    --info-bg: #00597a;
    --info-text: #e0f7ff;
    
    /* Espacements */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-blue: 0 0 30px rgba(0, 163, 224, 0.5);
    --shadow-blue-sm: 0 4px 20px rgba(0, 163, 224, 0.4);
}

/* ============================================
   2. RESET & STYLES DE BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   3. TYPOGRAPHIE
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-hover);
}

/* ============================================
   4. CLASSES UTILITAIRES
   ============================================ */
.text-onyx-blue { color: var(--color-accent); }
.bg-onyx-blue { background-color: var(--color-accent); }
.bg-gray-950 { background-color: var(--bg-primary); }
.bg-gray-900 { background-color: #111827; }
.bg-gray-800 { background-color: #1f2937; }
.text-gray-200 { color: var(--text-secondary); }
.text-gray-400 { color: var(--text-muted); }
.text-white { color: var(--text-primary); }
.border-gray-800 { border-color: var(--border-primary); }
.border-gray-700 { border-color: var(--border-secondary); }

/* ============================================
   5. NAVIGATION
   ============================================ */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-primary);
}

nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    transition: all var(--transition-normal);
}

nav .space-x-4 a {
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

nav .space-x-4 a:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

/* ============================================
   6. BOUTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-accent);
    color: var(--text-primary);
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    box-shadow: var(--shadow-blue-sm);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    background-color: var(--bg-card-hover);
    color: var(--text-dark);
    cursor: not-allowed;
    transform: none;
}

.btn-submit {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: var(--color-accent);
    color: var(--text-primary);
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.btn-submit:hover:not(:disabled) {
    background-color: var(--color-accent-hover);
    box-shadow: var(--shadow-blue-sm);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background-color: var(--bg-card-hover);
    color: var(--text-dark);
    cursor: not-allowed;
}

/* ============================================
   7. FORMULAIRES
   ============================================ */
.contact-form-container {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-lg);
}

.input-wrapper {
    margin-bottom: var(--spacing-lg);
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: #888;
    pointer-events: none;
    z-index: 2;
}

.input-icon.textarea-icon {
    top: 1rem;
    align-self: flex-start;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background-color: var(--bg-card-hover);
    border: 1px solid var(--border-secondary);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-normal);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 1px var(--color-accent), 0 0 8px rgba(0, 163, 224, 0.5);
}

.form-input::placeholder {
    color: var(--text-dark);
}

textarea.form-input {
    resize: vertical;
    min-height: 150px;
    padding-top: 0.875rem;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.error-message {
    color: var(--error-text);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

.invalid-input {
    border-color: #dc3545 !important;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.8) !important;
}

.form-message {
    margin-top: var(--spacing-md);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-message.success {
    background-color: var(--success-bg);
    color: var(--success-text);
}

.form-message.error {
    background-color: var(--error-bg);
    color: var(--error-text);
}

.form-message.info {
    background-color: var(--info-bg);
    color: var(--info-text);
}

/* ============================================
   8. CARTES D'INFORMATION DE CONTACT
   ============================================ */
.contact-info-container {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-lg);
}

.contact-info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-card-hover);
    border: 1px solid var(--border-secondary);
    border-radius: 0.75rem;
    transition: all var(--transition-normal);
}

.contact-info-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 163, 224, 0.1);
    border-radius: 0.75rem;
    color: var(--color-accent);
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ============================================
   9. SECTIONS & CONTENEURS
   ============================================ */
section {
    padding: 5rem 1.5rem;
}

.max-w-7xl {
    max-width: 1280px;
    margin: 0 auto;
}

.max-w-6xl {
    max-width: 1152px;
    margin: 0 auto;
}

.max-w-4xl {
    max-width: 896px;
    margin: 0 auto;
}

/* ============================================
   10. GRILLES & LAYOUTS
   ============================================ */
.grid {
    display: grid;
    gap: 2rem;
}

.grid.lg\:grid-cols-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .grid.lg\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   11. ANIMATIONS
   ============================================ */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================
   12. EFFETS VISUELS
   ============================================ */
.shadow-onyx-blue {
    box-shadow: var(--shadow-blue);
}

.backdrop-blur-sm {
    backdrop-filter: blur(12px);
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

/* ============================================
   13. FOOTER
   ============================================ */
footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-primary);
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

footer a:hover {
    color: var(--color-accent);
}

/* ============================================
   14. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    nav .space-x-4 {
        display: none;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-submit {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }
    
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

/* ============================================
   15. CLASSES SPÉCIFIQUES AUX PAGES
   ============================================ */

/* Hero Section */
.hero-section {
    position: relative;
    text-align: center;
    padding: 7rem 1.5rem;
    background: linear-gradient(to bottom, var(--bg-primary), #111827);
    overflow: hidden;
}

/* Feature Cards */
.feature-card {
    padding: 1.5rem;
    background-color: #1f2937;
    border-radius: 0.75rem;
    border: 1px solid var(--border-secondary);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    color: var(--color-accent);
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

/* ============================================
   16. ACCESSIBILITÉ
   ============================================ */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Amélioration du contraste pour l'accessibilité */
@media (prefers-contrast: high) {
    :root {
        --text-muted: #d1d5db;
        --border-primary: #4b5563;
    }
}

/* Mode sombre forcé (si nécessaire) */
@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--bg-primary);
    }
}

/* Reset et Variables CSS */
:root {
    --color-accent: #00A3E0;
    --color-bg-primary: #030712;
    --color-bg-secondary: #0a0a0a;
    --color-bg-card: #111111;
    --color-bg-form: #191919;
    --color-border: #444;
    --color-border-light: #333;
    --color-text-primary: #ffffff;
    --color-text-secondary: #c0c0c0;
    --color-text-muted: #888;
    --color-error: #dc3545;
    --color-success: #28a745;
    --color-info: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Archivo", sans-serif;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utilitaires de couleur */
.text-onyx-blue {
    color: var(--color-accent);
}

.bg-onyx-blue {
    background-color: var(--color-accent);
}

.border-onyx-blue {
    border-color: var(--color-accent);
}

.shadow-onyx-blue {
    box-shadow: 0 0 30px rgba(0, 163, 224, 0.5);
}

/* Navigation */
.sticky {
    position: sticky;
    top: 0;
    z-index: 50;
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.btn-primary {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.btn-primary:hover {
    box-shadow: 0 4px 20px rgba(0, 163, 224, 0.4);
    transform: translateY(-2px);
}

/* Formulaire de Contact */
.contact-form-container {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #222;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.input-wrapper {
    margin-bottom: 1.5rem;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    flex-shrink: 0;
    z-index: 2;
}

.textarea-icon {
    top: 12px;
    transform: none;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    padding-left: 44px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background-color: var(--color-bg-form);
    color: var(--color-text-primary);
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(0, 163, 224, 0.2);
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.form-input.invalid {
    border-color: var(--color-error);
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

.form-input select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 44px;
}

.form-input textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 12px;
    padding-left: 44px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--color-accent);
    color: var(--color-text-primary);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.btn-submit:hover:not(:disabled) {
    background-color: #0080b0;
    box-shadow: 0 4px 20px rgba(0, 163, 224, 0.4);
}

.btn-submit:disabled {
    background-color: var(--color-bg-form);
    color: var(--color-text-muted);
    cursor: not-allowed;
    box-shadow: none;
}

.error-message {
    color: var(--color-error);
    font-size: 0.85rem;
    margin-top: 5px;
    margin-bottom: 10px;
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.95rem;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-message.success {
    background-color: #2b5a38;
    color: #d4edda;
}

.form-message.error {
    background-color: #721c24;
    color: #f8d7da;
}

.form-message.info {
    background-color: #00597a;
    color: #e0f7ff;
}

/* Informations de Contact */
.contact-info-container {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #222;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-bg-form);
    border-radius: 8px;
    border: 1px solid var(--color-border);
    transition: border-color 0.3s;
}

.contact-info-card:hover {
    border-color: var(--color-accent);
}

.contact-icon {
    color: var(--color-accent);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

/* Animations et Transitions */
@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }

    .contact-info-card {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-icon {
        align-self: center;
    }

    .btn-submit {
        font-size: 16px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .contact-form-container,
    .contact-info-container {
        padding: 1rem;
    }

    .input-icon-wrapper {
        flex-direction: column;
        gap: 0.5rem;
    }

    .input-icon {
        position: static;
        transform: none;
        align-self: flex-start;
    }

    .form-input {
        padding-left: 12px;
    }

    .form-input textarea {
        padding-left: 12px;
    }
}

/* Styles pour les liens */
a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0080b0;
}

/* Styles pour les sections */
section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

/* Utilitaires Flexbox */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

/* Utilitaires Grid */
.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.items-stretch {
    align-items: stretch;
}

/* Utilitaires Responsive */
@media (min-width: 1024px) {
    .lg\\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 640px) {
    .sm\\:flex {
        display: flex;
    }
}

@media (min-width: 768px) {
    .md\\:block {
        display: block;
    }

    .md\\:p-16 {
        padding: 4rem;
    }

    .md\\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .md\\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
}

/* Utilitaires de Texte */
.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 0.2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.z-10 {
    z-index: 10;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.border {
    border-width: 1px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.border-gray-800 {
    border-color: #1f2937;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-gray-950 {
    background-color: #030712;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-white {
    color: #ffffff;
}

.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-200 {
    transition-duration: 200ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-widest {
    letter-spacing: 0.25em;
}

.leading-tight {
    line-height: 1.25;
}

.overflow-hidden {
    overflow: hidden;
}

.blur-3xl {
    filter: blur(64px);
}

.opacity-20 {
    opacity: 0.2;
}

.opacity-50 {
    opacity: 0.5;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.group:hover .group-hover\\:rotate-12 {
    transform: rotate(12deg);
}

.break-all {
    word-break: break-all;
}

.flex-wrap {
    flex-wrap: wrap;
}
