:root {
    --inksight-primary: #8b5cf6;
    --inksight-primary-dark: #6d28d9;
    --inksight-secondary: #4c1d95;
    --inksight-accent: #a78bfa;
    --inksight-bg: #0f1021;
    --inksight-card-bg: rgba(30, 27, 75, 0.4);
    --inksight-border: rgba(139, 92, 246, 0.15);
    --inksight-text: #f8fafc;
    --inksight-text-muted: #94a3b8;
}

body.inksight-theme {
    background-color: var(--inksight-bg);
    color: var(--inksight-text);
    font-family: 'Outfit', sans-serif;
    margin: 0;
    line-height: 1.6;
}

.inksight-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.inksight-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.inksight-logo-large {
    width: 100px;
    height: 100px;
    background: var(--inksight-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.inksight-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.inksight-hero p {
    font-size: 1.25rem;
    color: var(--inksight-text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.badge-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.badge-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--inksight-primary);
}

.badge-btn i {
    font-size: 1.5rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.badge-text .small {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.7;
}

.badge-text .large {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Features Section */
.inksight-features {
    padding: 6rem 0;
}

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

.feature-card {
    background: var(--inksight-card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--inksight-border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 27, 75, 0.6);
    border-color: rgba(139, 92, 246, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--inksight-primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--inksight-text-muted);
}

/* Support & Privacy Section */
.inksight-footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: var(--inksight-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--inksight-primary);
}

/* Support Page Specific */
.support-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 2rem;
}

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

.faq-section {
    margin-top: 4rem;
}

.faq-item {
    background: var(--inksight-card-bg);
    margin-bottom: 1rem;
    border-radius: 12px;
    padding: 1.5rem;
}

.faq-item h4 {
    margin-bottom: 0.5rem;
    color: var(--inksight-primary);
}

.contact-button {
    display: inline-block;
    background-color: var(--inksight-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .inksight-hero h1 {
        font-size: 2.5rem;
    }

    .app-badges {
        flex-direction: column;
        align-items: center;
    }
}