@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-main: #0a0a0c;
    --bg-secondary: #121216;
    --bg-tertiary: #1a1a20;
    --bg-primary: #0a0a0c;
    --text-primary: #f8f9fa;
    --text-secondary: #a1a1aa;
    --text-main: #f8f9fa;
    --text-muted: #71717a;
    --accent-primary: #3b82f6;
    --accent-secondary: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-gradient: linear-gradient(135deg, #3b82f6, #8b5cf6);
    --gold: #d4af37;
    --gold-premium: #d4af37;
    --gold-gradient: linear-gradient(135deg, #f3da7a, #d4af37, #b8860b);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
    border: 1px solid var(--glass-border);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

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

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes pulseBlue {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    display: inline-block;
}
.logo span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Base Buttons */
button {
    cursor: pointer;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.5rem;
}
.btn-login:hover {
    background: var(--glass-bg);
    border-color: var(--text-secondary);
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}
.btn-primary:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

.btn-large {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 40px;
    animation: pulseGlow 2s infinite;
}
.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary-large {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-primary-large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}
.btn-primary-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}
.btn-primary-large:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

.btn-primary-small {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}
.btn-primary-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
}
.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-primary);
}

.btn-secondary-small {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
}
.btn-secondary-small:hover {
    border-color: var(--text-secondary);
    background: var(--bg-secondary);
}

.btn-full-width {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 5% 2rem 5%;
    background: radial-gradient(circle at 50% 30%, rgba(59, 130, 246, 0.15) 0%, rgba(10, 10, 12, 1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    filter: blur(150px);
    opacity: 0.12;
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 950px;
    animation: fadeIn 1s ease-out;
}

.badge-pro {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #e4e4e7, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
.section-padding {
    padding: 8rem 5%;
}

.section-container {
    padding: 6rem 5% 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Layout Grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Cards */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.glass-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(59, 130, 246, 0.2);
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    z-index: 10;
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.glass-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.dash-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.dash-card:hover {
    border-color: var(--text-secondary);
}
.dash-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.form-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    margin: 0 auto;
    width: 100%;
}

.highlight-card {
    border-color: var(--accent-primary);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.05) 0%, rgba(18, 18, 22, 0) 100%), var(--bg-secondary);
}

.bounty-card {
    border-left: 4px solid var(--gold);
}

.exchange-card {
    border-left: 4px solid var(--accent-secondary);
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}
.price-tag .currency { font-size: 1.2rem; vertical-align: super; opacity: 0.8; margin-right: 2px; }
.price-tag .amount { font-size: 2.2rem; }
.price-tag .detail { display: block; font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }

/* Status Badges */
.tag-scienza {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.micro-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

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

.status-active {
    color: var(--accent-green);
    font-weight: 600;
}

/* Forms & Inputs */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--glass-shadow);
}

.form-group, .input-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label, .input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-control, input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="date"], select, textarea {
    width: 100%;
    padding: 0.85rem 1.2rem;
    background: var(--bg-main);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus, input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.checkout-area {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

/* Sport Section */
.sport-pill {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}
.sport-pill:hover, .sport-pill.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
}

.sport-content {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--bg-secondary);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

/* Dashboard Specific Layout */
.dashboard-body {
    display: flex;
    min-height: 100vh;
    background-color: var(--bg-main);
}

.sidebar {
    width: 280px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    flex-shrink: 0;
}

.logo-dashboard {
    margin-bottom: 3rem;
    font-size: 1.4rem;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.sidebar-nav a {
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
    background: var(--glass-bg);
    color: var(--text-primary);
}
.sidebar-nav a.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    border-left: 3px solid var(--accent-blue);
}

.sidebar-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.sidebar-footer p { margin-bottom: 0.3rem; }

.dashboard-content {
    flex-grow: 1;
    padding: 3rem 4%;
    overflow-y: auto;
}

.dash-header {
    margin-bottom: 2.5rem;
}
.dash-header h2 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.dash-header p { color: var(--text-secondary); }

/* Commit Graph */
.commit-graph {
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    gap: 6px;
}
.commit-box {
    aspect-ratio: 1;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease;
}
.commit-box:hover { transform: scale(1.2); }
.commit-box.level-0 { background-color: rgba(255, 255, 255, 0.05); }
.commit-box.level-1 { background-color: rgba(59, 130, 246, 0.2); }
.commit-box.level-2 { background-color: rgba(59, 130, 246, 0.5); }
.commit-box.level-3 { background-color: rgba(59, 130, 246, 0.8); }
.commit-box.level-4 { background-color: rgba(59, 130, 246, 1); }

/* Bio-Sync Upload Zone */
.upload-zone {
    border: 2px dashed var(--glass-border);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    background: var(--bg-main);
    transition: border-color 0.3s ease;
}
.upload-zone:hover { border-color: var(--accent-blue); }
.upload-icon { font-size: 3rem; margin-bottom: 1rem; }

/* Exchange & Amazon Lists */
.exchange-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.iec-badge { font-size: 0.8rem; font-weight: 700; color: var(--accent-green); background: rgba(16, 185, 129, 0.1); padding: 0.2rem 0.6rem; border-radius: 8px; }
.exchange-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--glass-border); }
.exchange-price { font-weight: 700; color: var(--gold); }

.amazon-card { border-top: 4px solid #ff9900; }
.amazon-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.amazon-list li a { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1rem; background: var(--bg-main); border-radius: 10px; border: 1px solid var(--glass-border); font-size: 0.9rem; font-weight: 500; }
.amazon-list li a::after { content: '↗'; color: #ff9900; font-weight: bold; }
.amazon-list li a:hover { border-color: #ff9900; background: rgba(255, 153, 0, 0.05); }

/* Evidence / Untraceable Cases */
.evidence-card {
    position: relative;
    border-left: 4px solid var(--accent-secondary);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}
.evidence-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}
.data-vector-bar {
    height: 6px;
    background: var(--glass-border);
    border-radius: 3px;
    overflow: hidden;
    margin: 0.8rem 0;
}
.data-vector-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 3px;
}

/* Payment Badges Grid */
.payments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}
.payment-badge {
    padding: 0.8rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}
.payment-badge:hover {
    border-color: var(--gold);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #030304;
    padding: 5rem 5% 3rem 5%;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-primary);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.footer-col ul li a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Utility classes */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gold { color: var(--gold); }
.text-accent { color: var(--accent-primary); }

.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.w-full { width: 100%; }

@media (max-width: 992px) {
    .dashboard-body { flex-direction: column; }
    .sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--glass-border); padding: 1.5rem; }
    .sidebar-nav { flex-direction: row; flex-wrap: wrap; gap: 0.5rem; }
    .sidebar-nav a { flex: 1; text-align: center; white-space: nowrap; }
    .dashboard-content { padding: 2rem 5%; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
    .section-padding { padding: 5rem 5%; }
    .section-container { padding: 5rem 5% 3rem 5%; }
    .grid-2, .grid-3, .grid-4, .dash-grid { grid-template-columns: 1fr; }
    .form-container { padding: 1.5rem; }
    .hero p { font-size: 1rem; }
    .section-header h2 { font-size: 2.2rem; }
    .btn-large { font-size: 1rem; padding: 0.9rem 2rem; }
}

/* Tier Selector (consulto-rapido.html) */
.tier-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tier-card {
    background: var(--bg-secondary);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}
.tier-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}
.tier-card.selected {
    border-color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.08);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}
.tier-card h3 {
    font-size: 1.2rem;
    margin: 0.8rem 0 0.5rem;
    color: var(--text-primary);
}
.tier-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin: 0.5rem 0;
    font-family: 'Outfit', sans-serif;
}

/* Dashboard sections */
.dash-section { display: none; }
.dash-section.active-section { display: block; }

/* Arena tabs */
.arena-tab { border: 1px solid var(--glass-border); transition: all 0.3s ease; }
.arena-tab:hover { background: var(--accent-primary); color: white; border-color: transparent; }

/* Responsive tier selector */
@media (max-width: 600px) {
    .tier-selector { grid-template-columns: 1fr; }
}

/* Course Pages (corso-pt.html, corso-mindset.html) */
.lesson-pill {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}
.lesson-pill:hover {
    border-color: var(--accent-primary);
    transform: translateX(4px);
}
.lesson-num {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: white;
    font-family: 'Outfit', sans-serif;
}
.enrollment-sidebar {
    position: relative;
}
.syllabus-section {
    min-width: 0;
}

/* Diploma Preview Section */
.diploma-preview {
    text-align: center;
    padding: 5rem 2rem;
    margin-top: 5rem;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(10,10,12,0) 60%), var(--bg-secondary);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.diploma-preview::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Responsive fixes for course grid */
@media (max-width: 900px) {
    .dash-grid[style*="2fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    .enrollment-sidebar .dash-card {
        position: static !important;
    }
}