/**
 * MINIKE DESIGN SYSTEM V5.0 - GLOBAL STYLES
 * Sistema unificado de estilos para todo o ecossistema
 * Dark/Light automático + Responsivo + Acessível
 */

/* ============================================
   CSS CUSTOM PROPERTIES (VARIÁVEIS)
   ============================================ */
:root {
    /* Dark Theme (padrão) */
    --bg-primary: #080808;
    --bg-secondary: #121212;
    --bg-tertiary: #1a1a1a;
    --bg-elevated: #1f1f1f;

    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --text-dim: #444444;

    --accent-primary: #00f2ff;
    --accent-secondary: #0077ff;
    --accent-gradient: linear-gradient(135deg, #00f2ff 0%, #0077ff 100%);

    --success: #00ff88;
    --warning: #ffc107;
    --danger: #ff4d4d;
    --info: #0099ff;

    --border-color: #222222;
    --border-light: #333333;
    --shadow-color: rgba(0, 0, 0, 0.4);
    --shadow-glow: rgba(0, 242, 255, 0.15);

    --card-radius: 16px;
    --btn-radius: 10px;
    --input-radius: 8px;

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'Fira Code', 'Consolas', monospace;
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e9ecef;
    --bg-elevated: #f1f3f4;

    --text-primary: #1a1a1a;
    --text-secondary: #495057;
    --text-muted: #868e96;
    --text-dim: #adb5bd;

    --accent-primary: #0066ff;
    --accent-secondary: #0044cc;
    --accent-gradient: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);

    --success: #00aa55;
    --warning: #ff9900;
    --danger: #cc0000;
    --info: #0077cc;

    --border-color: #e0e0e0;
    --border-light: #d0d0d0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-glow: rgba(0, 102, 255, 0.1);
}

/* Contraste obrigatorio no tema claro para paginas antigas/utilitarias. */
[data-theme="light"] body{background:#f8fafc;color:#0f172a}
[data-theme="light"] .text-white{color:#0f172a!important}
[data-theme="light"] .text-gray-300{color:#334155!important}
[data-theme="light"] .text-gray-400{color:#475569!important}
[data-theme="light"] .text-gray-500{color:#64748b!important}
[data-theme="light"] .mk-card,
[data-theme="light"] .bg-\[\#0f172a\]\/80,
[data-theme="light"] .bg-\[\#0f172a\]\/90,
[data-theme="light"] .bg-\[\#0f172a\]\/95,
[data-theme="light"] .bg-\[\#111827\]\/95{background:#fff!important;border-color:rgba(15,23,42,.12)!important;box-shadow:0 16px 44px rgba(15,23,42,.08)}
[data-theme="light"] .bg-white\/5,[data-theme="light"] .bg-white\/10{background:#f1f5f9!important}
[data-theme="light"] .border-white\/10{border-color:rgba(15,23,42,.12)!important}
[data-theme="light"] .mk-btn-secondary{color:#0f172a;border-color:rgba(15,23,42,.18);background:#fff}

/* Auto-detect do sistema */
@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) {
        --bg-primary: #f8f9fa;
        --bg-secondary: #ffffff;
        --bg-tertiary: #e9ecef;
        --bg-elevated: #f1f3f4;

        --text-primary: #1a1a1a;
        --text-secondary: #495057;
        --text-muted: #868e96;

        --accent-primary: #0066ff;
        --accent-secondary: #0044cc;
        --accent-gradient: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);

        --border-color: #e0e0e0;
        --border-light: #d0d0d0;
        --shadow-color: rgba(0, 0, 0, 0.1);
    }
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-family);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75em;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p {
    margin-bottom: 1em;
    color: var(--text-secondary);
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-secondary);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.minike-header {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

[data-theme="light"] .minike-header {
    background: rgba(255, 255, 255, 0.95);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 15px;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.header-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all var(--transition-normal);
}

.header-nav a:hover {
    color: var(--accent-primary);
    background: var(--bg-tertiary);
}

/* ============================================
   CONTROLS (Lang + Theme)
   ============================================ */
.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switch {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-switch a {
    opacity: 0.6;
    transition: all var(--transition-normal);
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 1;
}

.lang-switch a:hover,
.lang-switch a.active {
    opacity: 1;
    transform: scale(1.15);
}

.theme-switch {
    display: flex;
    gap: 4px;
    background: var(--bg-tertiary);
    padding: 4px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.theme-switch button {
    background: transparent;
    border: none;
    padding: 6px 10px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-switch button:hover {
    color: var(--text-primary);
}

.theme-switch button.active {
    background: var(--accent-gradient);
    color: #000;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    transition: color var(--transition-fast);
}

.mobile-menu-btn:hover {
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .header-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 15px 0;
        border-top: 1px solid var(--border-color);
        margin-top: 15px;
    }

    .header-nav.active {
        display: flex;
    }

    .header-nav a {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .header-controls {
        margin-left: auto;
    }

    .header-content {
        padding: 15px 4%;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    white-space: nowrap;
    user-select: none;
}

.btn i {
    font-size: 1em;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: var(--bg-tertiary);
}

.btn-outline:hover i {
    color: var(--accent-primary);
}

.btn-danger {
    background: rgba(255, 77, 77, 0.1);
    color: var(--danger);
    border: 1px solid var(--danger);
}

.btn-danger:hover {
    background: var(--danger);
    color: #fff;
}

.btn-success {
    background: rgba(0, 255, 136, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.btn-success:hover {
    background: var(--success);
    color: #000;
}

.btn-warning {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning);
    border: 1px solid var(--warning);
}

.btn-warning:hover {
    background: var(--warning);
    color: #000;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 24px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px var(--shadow-color);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.card-icon {
    font-size: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-body {
    color: var(--text-secondary);
}

.card-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ============================================
   GRID SYSTEM
   ============================================ */
.grid {
    display: grid;
    gap: 24px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-5 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-6 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.container-fluid {
    padding: 40px 5%;
    width: 100%;
}

.section {
    padding: 60px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--input-radius);
    font-size: 1rem;
    font-family: var(--font-family);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--shadow-glow);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    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='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-error {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-hint {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Checkbox & Radio */
.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form-check input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-primary);
}

.form-check-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    cursor: pointer;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-premium {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.badge-success {
    background: rgba(0, 255, 136, 0.15);
    color: var(--success);
    border: 1px solid var(--success);
}

.badge-danger {
    background: rgba(255, 77, 77, 0.15);
    color: var(--danger);
    border: 1px solid var(--danger);
}

.badge-warning {
    background: rgba(255, 193, 7, 0.15);
    color: var(--warning);
    border: 1px solid var(--warning);
}

.badge-info {
    background: rgba(0, 153, 255, 0.15);
    color: var(--info);
    border: 1px solid var(--info);
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 15px 20px;
    border-radius: var(--btn-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-danger {
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid var(--warning);
    color: var(--warning);
}

.alert-info {
    background: rgba(0, 153, 255, 0.1);
    border: 1px solid var(--info);
    color: var(--info);
}

/* ============================================
   AD CONTAINERS (Monetização)
   ============================================ */
.ad-container {
    background: var(--bg-secondary);
    border: 1px dashed var(--border-color);
    border-radius: var(--card-radius);
    padding: 20px;
    text-align: center;
    margin: 20px 0;
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-container::before {
    content: 'PUBLICIDADE';
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--bg-primary);
    padding: 0 10px;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
    font-weight: 800;
}

.ad-container.ad-header {
    max-width: 728px;
    min-height: 90px;
}

.ad-container.ad-sidebar {
    max-width: 300px;
    min-height: 250px;
}

.ad-container.ad-footer {
    max-width: 728px;
    min-height: 90px;
}

/* ============================================
   FOOTER
   ============================================ */
.minike-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 40px 5% 30px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    background: var(--bg-tertiary);
    display: inline-block;
    padding: 25px 40px;
    border-radius: var(--card-radius);
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.footer-brand h3 {
    color: var(--text-primary);
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
    font-size: 1.3rem;
}

.footer-brand .subtitle {
    color: var(--accent-primary);
    font-size: 0.85rem;
    margin: 0 0 15px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-brand i {
    color: var(--accent-primary);
    width: 18px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin: 20px 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 20px;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-accent { color: var(--accent-primary); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-info { color: var(--info); }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }

.bg-secondary { background: var(--bg-secondary); }
.bg-tertiary { background: var(--bg-tertiary); }

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.slide-in {
    animation: slideIn 0.5s ease forwards;
}

.scale-in {
    animation: scaleIn 0.3s ease forwards;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible for keyboard navigation */
:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    body {
        background: white !important;
        color: black !important;
    }

    .minike-header,
    .minike-footer,
    .ad-container,
    .theme-switch,
    .lang-switch {
        display: none !important;
    }
}

/* ============================================
   MINIKE UTILITY COMPAT
   Compatibilidade leve para paginas antigas que usam utilitarios tipo Tailwind
   sem carregar Tailwind por CDN.
   ============================================ */
.mx-auto{margin-left:auto;margin-right:auto}.max-w-3xl{max-width:48rem}.max-w-6xl{max-width:72rem}.px-4{padding-left:1rem;padding-right:1rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.pb-8{padding-bottom:2rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}.mt-7{margin-top:1.75rem}.mt-8{margin-top:2rem}.mt-12{margin-top:3rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mb-12{margin-bottom:3rem}.mb-14{margin-bottom:3.5rem}
.grid{display:grid}.flex{display:flex}.inline-flex{display:inline-flex}.hidden{display:none}.items-center{align-items:center}.items-end{align-items:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.text-center{text-align:center}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}
.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.gap-6{gap:1.5rem}.gap-8{gap:2rem}.gap-12{gap:3rem}.space-y-3>*+*{margin-top:.75rem}
.text-xs{font-size:.75rem;line-height:1rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-5xl{font-size:3rem;line-height:1}.text-6xl{font-size:3.75rem;line-height:1}
.font-semibold{font-weight:600}.font-bold{font-weight:700}.font-black{font-weight:900}.uppercase{text-transform:uppercase}.tracking-tight{letter-spacing:-.025em}.tracking-widest{letter-spacing:.1em}.tracking-\[0\.2em\]{letter-spacing:.2em}.tracking-\[0\.3em\]{letter-spacing:.3em}.leading-7{line-height:1.75rem}.leading-8{line-height:2rem}.leading-tight{line-height:1.1}
.text-white{color:#fff}.text-gray-300{color:#cbd5e1}.text-gray-400{color:#94a3b8}.text-gray-500{color:#64748b}.text-blue-300{color:#7dd3fc}.text-blue-400{color:#38bdf8}.text-orange-300{color:#fdba74}.text-black{color:#020617}
.bg-white\/5{background:rgba(255,255,255,.05)}.bg-white\/10{background:rgba(255,255,255,.10)}.bg-\[\#0f172a\]\/80{background:rgba(15,23,42,.8)}.bg-\[\#0f172a\]\/90{background:rgba(15,23,42,.9)}.bg-\[\#0f172a\]\/95{background:rgba(15,23,42,.95)}.bg-\[\#111827\]\/95{background:rgba(17,24,39,.95)}.bg-orange-500\/15{background:rgba(249,115,22,.15)}
.border{border-width:1px;border-style:solid}.border-white\/10{border-color:rgba(255,255,255,.1)}.border-blue-500\/20{border-color:rgba(59,130,246,.2)}.border-orange-500\/20{border-color:rgba(249,115,22,.2)}
.rounded-lg{border-radius:.5rem}.rounded-2xl{border-radius:1rem}.rounded-3xl{border-radius:1.5rem}.rounded-\[28px\]{border-radius:28px}
.h-12{height:3rem}.w-12{width:3rem}.font-mono{font-family:var(--font-mono)}.shadow-\[0_40px_120px_rgba\(0\,0\,0\,0\.32\)\]{box-shadow:0 40px 120px rgba(0,0,0,.32)}
@media(min-width:640px){.sm\:flex-row{flex-direction:row}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(min-width:768px){.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:text-6xl{font-size:3.75rem;line-height:1}}
@media(min-width:1024px){.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:col-span-2{grid-column:span 2/span 2}.lg\:grid-cols-\[1\.2fr_0\.8fr\]{grid-template-columns:1.2fr .8fr}}
@media(min-width:1280px){.xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}
