/* ============================================
   A's Solution - Solo Leveling Inspired Styles
   Shadow Monarch Aesthetic
   ============================================ */

/* ============================================
   CSS Variables (Design System)
   ============================================ */
:root {
    /* CLI-Inspired Colors (Purple + Cyan) */
    --color-bg-dark: #0a0a0f;
    --color-bg-dark-alt: #1a1a2e;
    --color-purple-primary: #8B5CF6;
    --color-purple-bright: #A78BFA;
    --color-cyan: #06B6D4;
    --color-cyan-bright: #22D3EE;

    /* Legacy variable mappings */
    --color-shadow-black: #0a0a0f;
    --color-monarch-purple-dark: #463671;
    --color-neon-purple: #8B5CF6;
    --color-ethereal-light: #E5E7EB;

    /* Semantic Colors */
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --color-error: #EF4444;
    --color-info: #06B6D4;

    /* Terminal Colors */
    --dracula-bg: #1a1a2e;
    --dracula-fg: #E5E7EB;
    --dracula-green: #10B981;
    --dracula-purple: #A78BFA;
    --dracula-cyan: #22D3EE;
    --dracula-red: #EF4444;
    --dracula-yellow: #F59E0B;

    /* Typography */
    --font-heading: 'Orbitron', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(184, 41, 248, 0.1);
    --shadow-md: 0 4px 16px rgba(184, 41, 248, 0.15);
    --shadow-lg: 0 8px 32px rgba(184, 41, 248, 0.2);
    --shadow-xl: 0 16px 48px rgba(184, 41, 248, 0.25);

    /* Transitions */
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Timing */
    --timing-fast: 150ms;
    --timing-standard: 300ms;
    --timing-slow: 500ms;
    --timing-extra-slow: 800ms;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
    color: var(--color-ethereal-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Purple/Cyan glow effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-md);
    color: #fff;
}

h1 { font-size: 72px; font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: 56px; letter-spacing: -0.01em; }
h3 { font-size: 40px; letter-spacing: -0.01em; }
h4 { font-size: 32px; font-weight: 600; }
h5 { font-size: 24px; font-weight: 600; }
h6 { font-size: 20px; font-weight: 500; }

p {
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

a {
    color: var(--color-neon-purple);
    text-decoration: none;
    transition: color var(--timing-standard) var(--ease-in-out);
}

a:hover {
    color: var(--color-ethereal-light);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ============================================
   Accessibility
   ============================================ */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-neon-purple);
    color: #fff;
    padding: var(--space-md) var(--space-lg);
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 8px 0;
}

.skip-to-content:focus {
    top: 0;
}

:focus-visible {
    outline: 2px solid var(--color-neon-purple);
    outline-offset: 4px;
    border-radius: 4px;
}

.hide-mobile {
    display: inline;
}

@media (max-width: 767px) {
    .hide-mobile { display: none; }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    #particles-canvas {
        display: none !important;
    }
}

/* ============================================
   Layout Components
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--color-purple-bright) 0%, var(--color-cyan-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: var(--color-ethereal-light);
    opacity: 0.8;
    margin-bottom: var(--space-3xl);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Three.js Particle Canvas
   ============================================ */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(24, 23, 29, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 41, 248, 0.2);
    padding: var(--space-md) 0;
}

.logo-svg {
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 20px;
    fill: #fff;
    letter-spacing: 2px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #18171D 0%, #1f1a2e 50%, #463671 100%);
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.geometric-shape {
    position: absolute;
    border: 2px solid rgba(184, 41, 248, 0.2);
    animation: rotate-slow 20s linear infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    transform: rotate(45deg);
    border-radius: 20px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 10%;
    transform: rotate(30deg);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 5%;
    transform: rotate(15deg);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-container {
    text-align: center;
    z-index: 10;
    max-width: 960px;
}

.hero-title {
    font-size: 72px;
    margin-bottom: var(--space-lg);
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #fff 0%, var(--color-purple-bright) 50%, var(--color-cyan-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-ethereal-light);
    margin-bottom: var(--space-2xl);
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
}

/* Animation on load */
.animate-on-load {
    animation: fadeInUp var(--timing-extra-slow) var(--ease-out) forwards;
}

.hero-title { animation-delay: 100ms; }
.hero-subtitle { animation-delay: 400ms; }
.hero-cta { animation-delay: 800ms; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-neon-purple);
    cursor: pointer;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--timing-standard) var(--ease-in-out);
    border: none;
    text-decoration: none;
    min-width: 180px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-purple-primary) 0%, var(--color-purple-bright) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, var(--color-purple-bright) 0%, var(--color-cyan) 100%);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-cyan);
    color: var(--color-cyan);
}

.btn-secondary:hover {
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
    border-color: var(--color-cyan-bright);
    color: var(--color-cyan-bright);
    text-decoration: none;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   Terminal Section
   ============================================ */
.terminal-section {
    background: linear-gradient(180deg, var(--color-shadow-black) 0%, #1a1625 100%);
}

.terminal-window {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dracula-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(184, 41, 248, 0.3);
}

.window-controls {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 16px;
    background: #282a36;
    border-bottom: 1px solid rgba(184, 41, 248, 0.2);
}

.control-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.control-close { background: var(--dracula-red); }
.control-minimize { background: #ffb86c; }
.control-maximize { background: var(--dracula-green); }

.window-title {
    margin-left: var(--space-md);
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--dracula-fg);
    opacity: 0.7;
}

.terminal-content {
    padding: var(--space-lg);
    min-height: 300px;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--dracula-fg);
    line-height: 1.8;
}

.terminal-output {
    white-space: pre-wrap;
}

.terminal-cursor {
    display: inline-block;
    width: 10px;
    height: 18px;
    background: var(--dracula-purple);
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.terminal-success {
    color: var(--dracula-green);
}

.terminal-info {
    color: var(--dracula-cyan);
}

/* ============================================
   Features Section
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: var(--space-xl);
    backdrop-filter: blur(10px);
    transition: all var(--timing-standard) var(--ease-in-out);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-cyan);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
    background: rgba(26, 26, 46, 0.6);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-purple-bright);
}

.feature-icon svg {
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
}

.feature-card:hover .feature-icon {
    color: var(--color-cyan-bright);
}

.feature-card:hover .feature-icon svg {
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.8));
}

.feature-title {
    font-size: 24px;
    margin-bottom: var(--space-md);
    color: #fff;
}

.feature-description {
    font-size: 16px;
    color: var(--color-ethereal-light);
    opacity: 0.8;
    line-height: 1.6;
}

/* ============================================
   Supported Sites Section
   ============================================ */
.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.site-card {
    background: rgba(70, 54, 113, 0.2);
    border: 1px solid rgba(184, 41, 248, 0.1);
    border-radius: 12px;
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--timing-standard) var(--ease-in-out);
}

.site-card:hover {
    border-color: var(--color-neon-purple);
    box-shadow: 0 0 20px rgba(184, 41, 248, 0.3);
    transform: translateY(-2px);
}

.flag-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
}

.site-code {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-neon-purple);
}

.site-name {
    font-size: 14px;
    color: var(--color-ethereal-light);
    opacity: 0.7;
}

/* ============================================
   Success Showcase Section
   ============================================ */
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-3xl);
    align-items: center;
}

.stats-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(70, 54, 113, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(184, 41, 248, 0.2);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: var(--space-md);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--color-neon-purple);
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 14px;
    color: var(--color-ethereal-light);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Discord Mockup */
.mockup-slideshow {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    min-height: 500px;
}

.discord-mockup {
    background: #2f3136;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.discord-mockup.slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95) translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.discord-mockup.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: scale(1) translateY(0);
    animation: slideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: scale(0.92) translateY(30px);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.98) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.discord-bot-header {
    padding: 12px 16px;
    background: #36393f;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.bot-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.bot-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.bot-badge {
    background: #5865F2;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.bot-time {
    font-size: 12px;
    color: #96989d;
}

.discord-embed {
    padding: 16px;
    display: flex;
    gap: 12px;
}

.embed-content-wrapper {
    width: 100%;
}

.embed-border {
    width: 4px;
    background: #57F287;
    border-radius: 2px;
    flex-shrink: 0;
}

.embed-content {
    flex: 1;
}

.embed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.embed-title-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.embed-success-icon {
    font-size: 18px;
}

.embed-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.embed-thumbnail {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.discord-mockup.slide.active .embed-thumbnail {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

.product-link {
    color: #00b0f4;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    display: block;
    margin-bottom: 12px;
}

.product-link:hover {
    text-decoration: underline;
}

.embed-table {
    margin: 12px 0;
}

.table-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.table-cell {
    background: #202225;
    padding: 8px;
    border-radius: 4px;
}

.cell-label {
    font-size: 11px;
    font-weight: 600;
    color: #b9bbbe;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.cell-value {
    font-size: 13px;
    color: #dcddde;
    word-break: break-word;
}

.embed-details {
    margin: 12px 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.detail-label {
    font-size: 13px;
    font-weight: 600;
    color: #b9bbbe;
}

.detail-value {
    font-size: 13px;
    color: #dcddde;
}

.flow-section {
    margin: 12px 0;
}

.flow-label {
    font-size: 13px;
    font-weight: 600;
    color: #b9bbbe;
    margin-bottom: 6px;
}

.flow-bar {
    height: 8px;
    background: #202225;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.flow-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #5865F2, #57F287);
    border-radius: 4px;
    opacity: 0;
}

.discord-mockup.slide.active .flow-bar::after {
    animation: fillBar 1.5s ease-out 0.5s forwards;
}

@keyframes fillBar {
    0% {
        width: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        width: 75%;
        opacity: 0.8;
    }
}

.embed-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #72767d;
    margin-top: 12px;
}

.footer-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    object-fit: cover;
}
/* ============================================
   Pricing Section
   ============================================ */
.pricing-section {
    background: linear-gradient(180deg, #1a1625 0%, var(--color-shadow-black) 100%);
}

.pricing-card {
    max-width: 450px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 2px solid var(--color-purple-primary);
    border-radius: 24px;
    padding: var(--space-3xl);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.3), 0 0 60px rgba(6, 182, 212, 0.1);
    text-align: center;
    backdrop-filter: blur(10px);
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-purple-primary) 0%, var(--color-cyan) 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.pricing-price {
    margin-bottom: var(--space-2xl);
}

.price-currency {
    font-size: 32px;
    font-weight: 700;
    vertical-align: top;
    color: var(--color-ethereal-light);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 900;
    color: #fff;
}

.price-period {
    font-size: 18px;
    color: var(--color-ethereal-light);
    opacity: 0.7;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: var(--space-2xl);
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: 16px;
    color: var(--color-ethereal-light);
}

.check-icon {
    flex-shrink: 0;
    color: var(--color-cyan-bright);
    margin-top: 2px;
    filter: drop-shadow(0 0 4px rgba(6, 182, 212, 0.5));
}

.pricing-note {
    margin-top: var(--space-lg);
    font-size: 14px;
    color: var(--color-ethereal-light);
    opacity: 0.6;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-md);
    background: rgba(70, 54, 113, 0.2);
    border: 1px solid rgba(184, 41, 248, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--timing-standard) var(--ease-in-out);
}

.faq-item.active {
    border-color: var(--color-neon-purple);
    border-left: 4px solid var(--color-neon-purple);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    text-align: left;
    transition: all var(--timing-standard) var(--ease-in-out);
}

.faq-question:hover {
    color: var(--color-neon-purple);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--color-neon-purple);
    transition: transform var(--timing-standard) var(--ease-in-out);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--timing-standard) var(--ease-in-out);
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--color-ethereal-light);
    opacity: 0.8;
    line-height: 1.8;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #0d0c10;
    border-top: 1px solid rgba(184, 41, 248, 0.2);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    text-align: center;
}

.footer-tagline {
    font-size: 14px;
    color: var(--color-ethereal-light);
    opacity: 0.6;
    margin-top: var(--space-sm);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
}

.footer-links a {
    color: var(--color-ethereal-light);
    font-size: 14px;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--color-ethereal-light);
    opacity: 0.5;
    line-height: 1.8;
}

/* ============================================
   Scroll Reveal Animation
   ============================================ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--timing-slow) var(--ease-out);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (max-width: 1023px) {
    h1 { font-size: 56px; }
    h2 { font-size: 48px; }
    h3 { font-size: 36px; }

    .section {
        padding: var(--space-3xl) 0;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .success-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        font-size: 14px;
    }

    h1 { font-size: 48px; }
    h2 { font-size: 40px; }
    h3 { font-size: 32px; }
    h4 { font-size: 28px; }
    h5 { font-size: 20px; }
    h6 { font-size: 18px; }

    .container {
        padding: 0 var(--space-md);
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .sites-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .terminal-content {
        padding: var(--space-md);
        font-size: 12px;
    }

    .pricing-card {
        padding: var(--space-xl);
    }

    .price-amount {
        font-size: 56px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* Small Mobile */
@media (max-width: 479px) {
    h1 { font-size: 36px; }
    h2 { font-size: 32px; }

    .hero-title {
        font-size: 36px;
    }

    .sites-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    #particles-canvas,
    .scroll-indicator,
    .geometric-shape {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }
}
