/* ==========================================================================
   TUTTOFANTA - Cyan Blue & Amber Gold Design System
   ========================================================================== */

:root {
    /* Color Tokens based on TUTTOFANTA Logo */
    --bg-onyx: #070B12;
    --bg-dark-card: rgba(13, 20, 32, 0.92);
    --border-glass: rgba(0, 229, 255, 0.2);
    
    --cyan-tutto: #00E5FF;
    --cyan-bright: #00D2FF;
    --cyan-glow: rgba(0, 229, 255, 0.4);
    
    --gold-amber: #FFB800;
    --gold-bright: #FFD700;
    --gold-glow: rgba(255, 184, 0, 0.35);
    
    --text-white: #FFFFFF;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    
    /* Gradients */
    --gradient-cyan: linear-gradient(135deg, #00F2FE 0%, #00C6FF 60%, #0072FF 100%);
    --gradient-gold: linear-gradient(135deg, #FFE066 0%, #FFB800 60%, #CC9200 100%);
    --gradient-dark: linear-gradient(180deg, #0B1320 0%, #070B12 100%);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Shadows */
    --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.85);
    --shadow-cyan: 0 10px 30px rgba(0, 229, 255, 0.4);
    --shadow-gold: 0 10px 30px rgba(255, 184, 0, 0.3);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-onyx);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    padding-bottom: 75px;
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Top Cyber Ticker */
.cyber-ticker {
    background: linear-gradient(90deg, #004e92, #00C6FF, #004e92);
    padding: 6px 0;
    font-size: 0.8rem;
    font-weight: 700;
}

.ticker-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.ticker-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-cyan {
    width: 8px;
    height: 8px;
    background: #FFF;
    border-radius: 50%;
    box-shadow: 0 0 10px #FFF;
    animation: cyanPulse 1.2s infinite;
}

@keyframes cyanPulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

.ticker-timer {
    font-family: monospace;
    font-weight: 800;
    background: rgba(0,0,0,0.35);
    padding: 2px 8px;
    border-radius: 6px;
    color: #FFE066;
}

/* Floating Header Dock */
.floating-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 11, 18, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.25);
    padding: 8px 0;
}

.header-dock {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tuttofanta-header-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

@media (min-width: 768px) {
    .tuttofanta-header-img {
        height: 48px;
    }
}

.dock-vs-badge {
    display: none;
}

@media (min-width: 768px) {
    .dock-vs-badge {
        display: block;
        background: rgba(0, 229, 255, 0.1);
        border: 1px solid var(--cyan-tutto);
        color: var(--cyan-tutto);
        padding: 4px 14px;
        border-radius: 20px;
        font-family: var(--font-heading);
        font-weight: 800;
        font-size: 0.75rem;
    }
}

.dock-cta {
    display: none;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--cyan-tutto);
    border: 1.5px solid var(--cyan-tutto);
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.3s;
}

.dock-cta:hover {
    background: var(--cyan-tutto);
    color: #000;
}

@media (min-width: 768px) {
    .dock-cta.desk-only {
        display: inline-block;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.btn-cyan-glow {
    background: var(--gradient-cyan);
    color: #000;
    padding: 14px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-cyan);
}

.btn-cyan-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0, 229, 255, 0.6);
}

.btn-cyan-full {
    background: var(--gradient-cyan);
    color: #000;
    padding: 12px 8px;
    border-radius: 10px;
    width: 100%;
    font-size: 0.78rem;
    box-shadow: var(--shadow-cyan);
    text-align: center;
}

.btn-gold-full {
    background: var(--gradient-gold);
    color: #000;
    padding: 12px 8px;
    border-radius: 10px;
    width: 100%;
    font-size: 0.78rem;
    box-shadow: var(--shadow-gold);
    text-align: center;
}

.hero-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.05rem;
    border-radius: 14px;
}

/* Hero Section */
.cyber-hero {
    position: relative;
    padding: 24px 0 36px;
    text-align: center;
    overflow: hidden;
}

.neon-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(0, 229, 255, 0.15) 0%, rgba(255, 184, 0, 0.08) 45%, rgba(7, 11, 18, 0) 75%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-logo-box {
    max-width: 480px;
    margin: 0 auto 16px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.25);
    border: 1.5px solid rgba(0, 229, 255, 0.3);
}

.hero-tutto-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 229, 255, 0.15);
    border: 1px solid rgba(0, 229, 255, 0.4);
    color: var(--cyan-tutto);
    padding: 4px 14px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.7rem;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.2rem;
    }
}

.cyan-gradient-text {
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.font-cyan { color: var(--cyan-tutto); }
.font-gold { color: var(--gold-amber); }
.text-cyan { color: var(--cyan-tutto); }
.text-gold { color: var(--gold-bright); }

.hero-subtitle {
    color: var(--text-muted);
    font-size: 0.92rem;
    max-width: 720px;
    margin: 0 auto 16px;
}

.single-choice-card {
    background: rgba(255, 184, 0, 0.08);
    border: 1.5px solid rgba(255, 184, 0, 0.35);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 760px;
    margin: 0 auto 20px;
    text-align: left;
}

.sc-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sc-info h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--gold-bright);
    margin-bottom: 2px;
}

.sc-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.hero-cta-group {
    max-width: 600px;
    margin: 0 auto;
}

.hero-micro-text {
    display: block;
    font-size: 0.76rem;
    color: var(--text-dim);
    margin-top: 8px;
}

/* VS ARENA GRID SECTION - 2 COLUMNS ON MOBILE */
.vs-arena-section {
    padding: 24px 0;
}

.arena-header {
    text-align: center;
    margin-bottom: 20px;
}

.arena-kicker {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.72rem;
    color: var(--cyan-tutto);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 4px;
}

.arena-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .arena-title {
        font-size: 2.3rem;
    }
}

.vs-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .vs-grid-wrapper {
        gap: 20px;
    }
}

.vs-card {
    background: var(--bg-dark-card);
    border-radius: 14px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-heavy);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .vs-card {
        padding: 24px;
        border-radius: 20px;
    }
}

.vs-card:hover {
    transform: translateY(-3px);
}

.vs-cyan-card {
    border: 1.5px solid rgba(0, 229, 255, 0.4);
}

.vs-gold-card {
    border: 1.5px solid rgba(255, 184, 0, 0.4);
}

.vs-card-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.opt-tag {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.7rem;
}

.opt-type-badge {
    font-size: 0.58rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 6px;
    width: fit-content;
}

.badge-cyan {
    background: rgba(0, 229, 255, 0.15);
    color: var(--cyan-tutto);
}

.badge-gold {
    background: rgba(255, 184, 0, 0.15);
    color: var(--gold-amber);
}

.vs-img-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vs-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.vs-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vs-bonus-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.88rem;
    line-height: 1.25;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .vs-bonus-title {
        font-size: 1.2rem;
        margin-bottom: 14px;
    }
}

.vs-feature-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    flex: 1;
}

.vs-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.feat-bullet {
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

.feat-desc {
    font-size: 0.74rem;
    color: var(--text-white);
    line-height: 1.25;
}

@media (min-width: 768px) {
    .feat-desc {
        font-size: 0.9rem;
    }
}

.vs-terms-box {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 12px;
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.vs-terms-box h5 {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    color: #FFF;
    margin-bottom: 2px;
}

.border-cyan { border-left: 3px solid var(--cyan-tutto); }
.border-gold { border-left: 3px solid var(--gold-amber); }

.vs-divider-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: var(--bg-onyx);
    border: 2px solid var(--cyan-tutto);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--cyan-tutto);
    z-index: 10;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
}

@media (min-width: 768px) {
    .vs-divider-badge {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* Timeline Roadmap Section */
.timeline-section {
    padding: 30px 0;
}

.timeline-flow {
    max-width: 720px;
    margin: 0 auto 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 16px;
}

.timeline-marker {
    width: 38px;
    height: 38px;
    background: rgba(0, 229, 255, 0.15);
    border: 2px solid var(--cyan-tutto);
    color: var(--cyan-tutto);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.marker-highlight {
    background: var(--gradient-gold);
    color: #000;
    border-color: var(--gold-bright);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 4px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.timeline-cta-wrap {
    text-align: center;
}

/* FAQ Cyber Section */
.faq-cyber-section {
    padding: 28px 0;
}

.faq-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-box {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
}

.faq-head {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
}

.faq-arrow {
    color: var(--cyan-tutto);
    font-size: 1.2rem;
    font-weight: 900;
    transition: transform 0.3s;
}

.faq-box.active .faq-arrow {
    transform: rotate(45deg);
}

.faq-body {
    padding: 0 16px 14px;
    color: var(--text-muted);
    font-size: 0.85rem;
    display: none;
}

.faq-box.active .faq-body {
    display: block;
}

/* Sticky Bottom Bar Mobile */
.cyber-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(7, 11, 18, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1.5px solid var(--cyan-tutto);
    padding: 10px 14px;
    z-index: 999;
}

@media (min-width: 992px) {
    .cyber-sticky-bar {
        display: none;
    }
}

.sticky-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.sticky-p {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78rem;
}

.sticky-s {
    font-size: 0.65rem;
    color: var(--text-dim);
}

.btn-cyan-sticky {
    background: var(--gradient-cyan);
    color: #000;
    padding: 10px 16px;
    font-size: 0.8rem;
    border-radius: 10px;
    white-space: nowrap;
}

/* Footer */
.cyber-footer {
    background: #04070C;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    padding: 24px 0;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.78rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-co {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--cyan-tutto);
    margin-bottom: 10px;
}

.f-dot { color: var(--text-dim); }

.f-sb-img {
    height: 20px;
    width: auto;
}

.f-terms {
    line-height: 1.35;
    margin-bottom: 10px;
}
