/* index.css */

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

html {
    overflow-x: hidden;
}

:root {
    --ink-black: #0a0a0a;
    --deep-black: #000000;
    --ink-gray: #1a1a1a;
    --splash-white: #ffffff;
    --off-white: #f5f5f5;
    --accent-silver: #c0c0c0;
    --ember-red: rgba(200, 0, 0, 0.8);
    --dark-ember: rgba(120, 0, 0, 0.6);
    --glow-red: rgba(255, 40, 0, 0.9);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--off-white);
    background: var(--deep-black);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(120, 0, 0, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(80, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.8);
}

header:hover {
    background: rgba(0,0,0,0.98);
    border-bottom-color: var(--splash-white);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--splash-white);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255,0,0,0.3);
}


/* Bluesky Social Link */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bluesky-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.bluesky-link:hover {
    border-color: var(--ember-red);
    box-shadow: 0 0 28px rgba(200, 0, 0, 0.4);
}

.bluesky-icon {
    width: 32px;
    height: 32px;
    fill: rgba(128, 0, 0, 0.85);
    transition: fill 0.3s ease;
}

.bluesky-link:hover .bluesky-icon {
    fill: rgba(146, 22, 0, 0.95);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--accent-silver);
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--splash-white);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--splash-white);
    text-shadow: 0 0 10px rgba(255,0,0,0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-btn {
    padding: 0.75rem 1.5rem;
    background: var(--splash-white);
    color: var(--deep-black);
    border: 2px solid var(--splash-white);
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--deep-black);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    border-radius: 50%;
    z-index: -1;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn:hover {
    color: var(--splash-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255,0,0,0.4);
}

/* Nav CTA Group */
.nav-cta-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.nav-cta-group .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 0.75rem 1.5rem;
    font-size: inherit;
    line-height: 1;
    box-sizing: border-box;
}

/* Outline variant for CTA button */
.cta-btn-outline {
    background: transparent;
    color: var(--splash-white);
    border: 2px solid var(--splash-white);
}

.cta-btn-outline::before {
    background: var(--splash-white);
}

.cta-btn-outline:hover {
    color: var(--deep-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255,0,0,0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-top: 70px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(120, 0, 0, 0.08) 0%, transparent 30%),
                radial-gradient(circle at 70% 60%, rgba(80, 0, 0, 0.05) 0%, transparent 40%);
    animation: slowPulse 10s ease-in-out infinite;
}

@keyframes slowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-logo {
    width: 280px;
    height: 280px;
    margin: 0 auto 2rem;
    filter: 
        drop-shadow(0 0 100px rgba(150, 0, 0, 0.5))
        drop-shadow(0 0 50px rgba(120, 0, 0, 0.4))
        drop-shadow(0 0 25px rgba(80, 0, 0, 0.25))
        contrast(1)
        brightness(1);
    position: relative;

}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--splash-white);
    animation: fadeInUp 1s ease 0.2s backwards;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 0 0 40px rgba(255,0,0,0.3), 2px 2px 0px rgba(0,0,0,0.9);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent-silver);
    letter-spacing: 1px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s backwards;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.primary-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--splash-white);
    color: var(--deep-black);
    border: 2px solid var(--splash-white);
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--deep-black);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    border-radius: 50%;
    z-index: -1;
}

.primary-btn:hover::before {
    width: 400px;
    height: 400px;
}

.primary-btn:hover {
    color: var(--splash-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 60px rgba(255,0,0,0.4);
}

.secondary-btn {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--splash-white);
    border: 2px solid var(--splash-white);
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--splash-white);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    border-radius: 50%;
    z-index: -1;
}

.secondary-btn:hover::before {
    width: 400px;
    height: 400px;
}

.secondary-btn:hover {
    color: var(--deep-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255,0,0,0.3);
}

.price-tag {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--accent-silver);
    animation: fadeInUp 1s ease 0.8s backwards;
}

.price-tag strong {
    font-size: 1.4rem;
    color: var(--splash-white);
}

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

/* Explore Hero Section */
.explore-hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-top: 0;
    position: relative;
    background: linear-gradient(180deg, var(--deep-black) 0%, rgba(120, 0, 0, 0.1) 100%);
}

.explore-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(150, 0, 0, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(100, 0, 0, 0.05) 0%, transparent 50%);
    animation: slowPulse 20s ease-in-out infinite;
    z-index: -1;
}

.explore-hero .hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.explore-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--splash-white);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.explore-hero p {
    font-size: 1.3rem;
    color: var(--accent-silver);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat i {
    font-size: 2rem;
    color: var(--splash-white);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--splash-white);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.stat-label {
    color: var(--accent-silver);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Explore Navigation - Full width */

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

/* Vertical Explore Navigation - Left Side */
.explore-nav {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.explore-nav.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.explore-nav.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(-20px);
}

/* Navigation rail container */
.explore-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Navigation items */
.explore-nav-links li {
    list-style: none;
    position: relative;
}

.explore-nav-links .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.6rem 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.25s ease, background 0.25s ease;
    min-width: 52px;
    position: relative;
}

.explore-nav-links .nav-link i {
    width: 18px;
    height: 18px;
    transition: color 0.25s ease;
    color: inherit;
}

.explore-nav-links .nav-link span {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.25s ease;
    text-align: center;
    line-height: 1.2;
}

/* Hover effect */
.explore-nav-links .nav-link:hover {
    color: var(--splash-white);
    background: rgba(255, 255, 255, 0.06);
}

/* Active state */
.explore-nav-links .nav-link.active {
    color: var(--splash-white);
    background: rgba(255, 255, 255, 0.08);
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .explore-nav {
        left: 0.75rem;
    }
}

/* Mobile - Hide explore nav completely */
@media (max-width: 768px) {
    .explore-nav {
        display: none !important;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .explore-nav {
        display: none !important;
    }
}

/* FIXED SECTION HEADER STYLES */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
}

.section-icon {
    font-size: 3rem;
    color: var(--splash-white);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--splash-white);
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--accent-silver);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Detail Grid */
.feature-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .feature-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* Feature Detail Cards - Enhanced */
.feature-detail-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(18, 18, 18, 0.95));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(12px);
    position: relative;
}

.feature-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-detail-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-detail-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85),
                0 0 50px rgba(255, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-detail-card:hover::before {
    opacity: 1;
}

.feature-detail-card:hover::after {
    opacity: 1;
}

.feature-detail-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.feature-icon-badge {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-detail-card:hover .feature-icon-badge {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.feature-detail-card:hover .feature-icon-badge::before {
    opacity: 1;
}

.feature-icon-badge i {
    font-size: 1.75rem;
    color: var(--splash-white);
    position: relative;
    z-index: 1;
}

.feature-detail-header h3 {
    flex: 1;
    font-size: 1.5rem;
    color: var(--splash-white);
    font-weight: 700;
    margin: 0;
}

.feature-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-detail-card:hover .feature-tag {
    transform: translateY(-1px);
}

.feature-tag.essential {
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.3), rgba(255, 100, 0, 0.3));
    color: var(--splash-white);
}

.feature-tag.new {
    background: linear-gradient(45deg, rgba(0, 150, 255, 0.3), rgba(0, 200, 255, 0.3));
    color: var(--splash-white);
}

.feature-tag.organization {
    background: rgba(100, 255, 100, 0.2);
    color: #90ff90;
}

.feature-tag.favorite {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.3));
    color: #ffd700;
}

.feature-tag.world {
    background: rgba(138, 43, 226, 0.2);
    color: #b884ff;
}

.feature-tag.timeline {
    background: rgba(0, 200, 255, 0.2);
    color: #80e5ff;
}

.feature-tag.ml {
    background: rgba(255, 0, 200, 0.2);
    color: #ff80e5;
}

.feature-tag.timesaver {
    background: rgba(50, 205, 50, 0.2);
    color: #90ee90;
}

.feature-detail-body {
    padding: 2rem;
    position: relative;
}

.feature-description {
    font-size: 1.05rem;
    color: var(--accent-silver);
    margin-bottom: 2rem;
    line-height: 1.85;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.feature-description::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--splash-white), transparent);
    transition: width 0.4s ease;
}

.feature-detail-card:hover .feature-description::after {
    width: 120px;
}

/* Feature Highlights - Enhanced */
.feature-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    padding-left: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.highlight-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--splash-white), rgba(255, 0, 0, 0.5));
    border-radius: 2px;
    transition: height 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.highlight-item:hover::before {
    height: 70%;
}

.highlight-item i {
    font-size: 1.4rem;
    color: var(--splash-white);
    margin-top: 0.15rem;
    flex-shrink: 0;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.highlight-item:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.highlight-item h4 {
    color: var(--splash-white);
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.highlight-item p {
    color: var(--accent-silver);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Feature Tips & Showcases - Enhanced */
.feature-tip, .feature-showcase, .technical-specs, .feature-workflow {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border-left: 3px solid var(--splash-white);
    padding: 1.5rem 1.75rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
    display: flex;
    gap: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-tip::before, .feature-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 3px;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.08), transparent);
    transition: width 0.4s ease;
}

.feature-tip:hover, .feature-showcase:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border-left-color: rgba(255, 100, 100, 0.8);
}

.feature-tip:hover::before, .feature-showcase:hover::before {
    width: 100%;
}

.feature-tip i, .feature-showcase i {
    font-size: 1.4rem;
    color: var(--splash-white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-tip:hover i, .feature-showcase:hover i {
    transform: scale(1.1);
}

.feature-tip strong, .feature-showcase h4 {
    color: var(--splash-white);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.feature-tip div, .feature-showcase div {
    flex: 1;
    position: relative;
    z-index: 1;
}

.feature-showcase p {
    color: var(--accent-silver);
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-tip kbd {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    color: var(--splash-white);
    font-size: 0.9rem;
}

/* Technical Specs */
.technical-specs h4, .feature-workflow h4 {
    color: var(--splash-white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.technical-specs ul, .feature-workflow ol {
    margin: 1rem 0 0 1.5rem;
    color: var(--accent-silver);
}

.technical-specs li, .feature-workflow li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Export Formats */
.export-formats {
    margin-top: 2rem;
}

.format-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.format-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-silver);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.format-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--splash-white);
    transform: translateY(-2px);
}

/* Privacy & Download Banners - Enhanced */
/* Horizontal Benefits Container */
.horizontal-benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}

/* Update both banners for side-by-side layout */
.privacy-banner,
.download-banner {
    background: linear-gradient(145deg, rgba(120, 0, 0, 0.18), rgba(60, 0, 0, 0.08));
    color: var(--splash-white);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.5),
                0 0 35px rgba(255, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    height: 100%;
    margin: 0;
}

/* Animated gradient border effect */
.privacy-banner::before,
.download-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 100, 100, 0.5) 25%,
        var(--splash-white) 50%,
        rgba(255, 100, 100, 0.5) 75%,
        transparent 100%);
    animation: bannerShimmer 4s ease-in-out infinite;
}

/* Subtle glow effect on corners */
.privacy-banner::after,
.download-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

@keyframes bannerShimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.privacy-banner::before {
    animation-delay: 0s;
}

.download-banner::before {
    animation-delay: 2s;
}

/* Hover effects */
.privacy-banner:hover,
.download-banner:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65),
                0 0 50px rgba(255, 0, 0, 0.12);
}

.privacy-banner:hover::after,
.download-banner:hover::after {
    opacity: 1;
}

/* Icon wrapper with animation */
.banner-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.banner-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 100, 100, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.privacy-banner:hover .banner-icon-wrapper,
.download-banner:hover .banner-icon-wrapper {
    transform: scale(1.1) rotate(3deg);
    border-color: rgba(255, 255, 255, 0.25);
}

.privacy-banner:hover .banner-icon-wrapper::before,
.download-banner:hover .banner-icon-wrapper::before {
    opacity: 1;
}

/* Legacy icon styling (fallback) */
.privacy-banner > i,
.download-banner > i {
    font-size: 28px;
    color: var(--splash-white);
    margin-top: 2px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.3));
}

.banner-icon-wrapper i {
    width: 26px;
    height: 26px;
    color: var(--splash-white);
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.3));
}

/* Content with staggered animation */
.privacy-banner-content,
.download-banner-content {
    flex: 1;
}

.privacy-banner-content h4,
.download-banner-content h4 {
    transform: translateX(0);
    transition: transform 0.4s ease;
}

.privacy-banner:hover .privacy-banner-content h4,
.download-banner:hover .download-banner-content h4 {
    transform: translateX(5px);
}

/* Headings */
.privacy-banner h4,
.download-banner h4 {
    margin: 0 0 14px 0;
    font-size: 1.35rem;
    color: var(--splash-white);
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
}

/* Animated underline for headings */
.privacy-banner h4::after,
.download-banner h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--splash-white), rgba(255, 100, 100, 0.6));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: left;
    border-radius: 1px;
}

.privacy-banner:hover h4::after,
.download-banner:hover h4::after {
    transform: scaleX(1);
}

/* Paragraphs */
.privacy-banner p,
.download-banner p {
    margin: 0;
    color: var(--accent-silver);
    line-height: 1.75;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.privacy-banner:hover p,
.download-banner:hover p {
    color: rgba(255, 255, 255, 0.85);
}

/* Strong text */
.privacy-banner strong,
.download-banner strong {
    color: var(--splash-white);
    font-weight: 700;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.25), rgba(180, 0, 0, 0.25));
    padding: 2px 8px;
    border-radius: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Highlight text for privacy banner */
.privacy-banner .highlight {
    color: #ff8080;
    font-weight: 600;
    position: relative;
}

.privacy-banner .highlight::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 160px;
    width: 100%;
    height: 1px;
    background: #ff8080;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.privacy-banner:hover .highlight::after {
    transform: scaleX(5.7);
}

/* Highlight text for download banner */
.download-banner .highlight {
    color: #ff8080;
    font-weight: 600;
    position: relative;
}

.download-banner .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ff8080;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.download-banner:hover .highlight::after {
    transform: scaleX(1);
}

/* Hugging Face link styling */
.hf-link {
    color: var(--splash-white);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.hf-link:hover {
    border-bottom-color: var(--splash-white);
    text-shadow: 0 0 8px rgba(255, 100, 100, 0.4);
}

/* Disclaimer styling */
.disclaimer {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.82rem;
    color: rgba(255, 200, 150, 0.75);
    font-style: italic;
}

.disclaimer i {
    width: 14px;
    height: 14px;
    color: rgba(255, 180, 100, 0.8);
}

/* Banner Responsive design */
@media (max-width: 1024px) {
    .horizontal-benefits-container {
        gap: 20px;
    }

    .privacy-banner,
    .download-banner {
        padding: 22px;
    }
}

@media (max-width: 768px) {
    .horizontal-benefits-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .privacy-banner,
    .download-banner {
        padding: 24px;
    }

    .banner-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .banner-icon-wrapper i {
        width: 22px;
        height: 22px;
    }

    .privacy-banner > i,
    .download-banner > i {
        font-size: 22px;
    }

    .privacy-banner h4,
    .download-banner h4 {
        font-size: 1.2rem;
    }

    .privacy-banner p,
    .download-banner p {
        font-size: 0.95rem;
    }

    .disclaimer {
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .privacy-banner,
    .download-banner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 22px 18px;
    }

    .banner-icon-wrapper {
        margin: 0 auto;
    }

    .privacy-banner > i,
    .download-banner > i {
        margin: 0 auto;
    }

    .privacy-banner h4,
    .download-banner h4 {
        display: block;
    }

    .disclaimer {
        justify-content: center;
        text-align: center;
    }
}

/* About Section - Redesigned */
.about-section {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
    background: linear-gradient(180deg, var(--ink-black) 0%, var(--deep-black) 50%, var(--ink-black) 100%);
}

.about-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(120, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(80, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(100, 0, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-label {
    display: inline-block;
    color: var(--accent-silver);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    position: relative;
}

.about-label::before,
.about-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-silver));
}

.about-label::before {
    right: calc(100% + 15px);
}

.about-label::after {
    left: calc(100% + 15px);
    background: linear-gradient(90deg, var(--accent-silver), transparent);
}

.about-header h2 {
    font-size: 3.5rem;
    color: var(--splash-white);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.3);
}

.header-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--splash-white), transparent);
    margin: 0 auto;
}

/* About Content - Two Column */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

/* Creator Profile */
.creator-profile {
    position: relative;
}

.profile-image-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 2rem;
}

.profile-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(150, 0, 0, 0.4) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.profile-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--splash-white);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8),
                0 0 60px rgba(150, 0, 0, 0.3);
    z-index: 2;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.profile-frame:hover .profile-image {
    filter: grayscale(0%);
}

.profile-accent {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.profile-details {
    text-align: center;
}

.profile-details h3 {
    font-size: 2rem;
    color: var(--splash-white);
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.profile-role {
    color: var(--accent-silver);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.profile-tagline {
    color: var(--splash-white);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    padding: 0 1rem;
    position: relative;
}

.profile-tagline::before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -10px;
    font-size: 3rem;
    color: rgba(255, 0, 0, 0.3);
    font-family: Georgia, serif;
}

/* Profile Stats */
.profile-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--splash-white);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.stat-item .stat-label {
    font-size: 0.75rem;
    color: var(--accent-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Creator Narrative */
.creator-narrative {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.narrative-section {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.narrative-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: background 0.4s ease;
}

.narrative-section:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.narrative-section:hover::before {
    background: linear-gradient(180deg, transparent, var(--splash-white), transparent);
}

.narrative-section.highlight {
    background: linear-gradient(135deg, rgba(120, 0, 0, 0.2), rgba(80, 0, 0, 0.1));
    border-color: rgba(255, 0, 0, 0.2);
}

.narrative-section.highlight::before {
    background: linear-gradient(180deg, transparent, rgba(255, 100, 100, 0.5), transparent);
}

.narrative-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.narrative-icon i {
    width: 24px;
    height: 24px;
    color: var(--splash-white);
}

.narrative-content h4 {
    color: var(--splash-white);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.narrative-content p {
    color: var(--accent-silver);
    line-height: 1.8;
    font-size: 1rem;
}

/* Values Showcase */
.values-showcase {
    margin-bottom: 4rem;
}

.values-title {
    text-align: center;
    color: var(--splash-white);
    font-size: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.values-title i {
    color: var(--splash-white);
}

.values-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(150, 0, 0, 0.1);
}

.value-card:hover::before {
    width: 80%;
    background: linear-gradient(90deg, transparent, var(--splash-white), transparent);
}

.value-icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(120, 0, 0, 0.3), rgba(80, 0, 0, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon-wrap {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(150, 0, 0, 0.3);
}

.value-icon-wrap i {
    width: 32px;
    height: 32px;
    color: var(--splash-white);
}

.value-card h4 {
    color: var(--splash-white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.value-card p {
    color: var(--accent-silver);
    font-size: 0.95rem;
    line-height: 1.7;
}

.value-accent {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(150, 0, 0, 0.1) 0%, transparent 70%);
    transition: all 0.4s ease;
}

.value-card:hover .value-accent {
    transform: scale(1.5);
    opacity: 0.8;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(40, 40, 40, 0.8));
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--splash-white), transparent);
}

.cta-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
}

.cta-content > i {
    width: 40px;
    height: 40px;
    color: var(--splash-white);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.cta-text p {
    color: var(--accent-silver);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cta-text .cta-highlight {
    color: var(--splash-white);
    margin-bottom: 0;
}

.cta-text a {
    color: var(--splash-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.cta-text a:hover {
    border-bottom-color: var(--splash-white);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .creator-profile {
        max-width: 400px;
        margin: 0 auto;
    }

    .values-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 5rem 1.5rem;
    }

    .about-header h2 {
        font-size: 2.5rem;
    }

    .profile-image-wrapper {
        width: 220px;
        height: 220px;
    }

    .values-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-cta {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .cta-content {
        flex-direction: column;
        align-items: center;
    }

    .narrative-section {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .narrative-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-header h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .about-label::before,
    .about-label::after {
        display: none;
    }

    .profile-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .profile-details h3 {
        font-size: 1.75rem;
    }
}

/* Screenshots Section */
.screenshots-section {
    padding: 6rem 2rem;
    background: var(--ink-black);
    position: relative;
    z-index: 1;
}

.screenshots-slider-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.screenshots-slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.screenshot-container {
    display: flex;
    transition: transform 0.6s ease;
}

.screenshot-slide {
    min-width: 100%;
    aspect-ratio: 16/9;
    background: rgba(26,26,26,0.8);
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.screenshot-slide span {
    display: block;
    width: 100%;
    height: 100%;
}

.screenshot-slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.screenshots-slider-wrapper .slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

/* Common slider styles */
.testimonials .slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,0,0,0.2);
    border: 2px solid rgba(255,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--splash-white);
    border-color: var(--splash-white);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255,0,0,0.6);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(26,26,26,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--splash-white);
    font-size: 1.5rem;
    line-height: 1;
    user-select: none;
}

.slider-arrow span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transform: translateY(-3px);
}

.slider-arrow:hover {
    background: var(--splash-white);
    color: var(--deep-black);
    transform: translateY(-50%) scale(1.1);
}

.screenshots-slider .slider-arrow.prev {
    left: 2rem;
}

.screenshots-slider .slider-arrow.next {
    right: 2rem;
}

.testimonials-slider .slider-arrow.prev {
    left: -70px;
}

.testimonials-slider .slider-arrow.next {
    right: -70px;
}

/* Comparison Section */
.comparison {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--deep-black) 0%, var(--ink-black) 100%);
    z-index: 1;
}

.comparison-content {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-table {
    background: rgba(26,26,26,0.8);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:first-child {
    background: var(--splash-white);
    font-weight: 700;
    color: var(--deep-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-row:hover:not(:first-child) {
    background: rgba(255,0,0,0.05);
}

.check {
    color: var(--splash-white);
    font-weight: 700;
    text-align: center;
}

.cross {
    color: var(--accent-silver);
    text-align: center;
    opacity: 0.5;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--deep-black) 0%, var(--ink-black) 100%);
    z-index: 1;
}

.testimonials-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonials-wrapper {
    overflow: hidden;
    border-radius: 8px;
}

.testimonials-container {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(26,26,26,0.8);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    border-color: var(--splash-white);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.testimonial-text {
    color: var(--accent-silver);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--splash-white);
    color: var(--deep-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--splash-white);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--accent-silver);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    background: var(--ink-black);
    z-index: 1;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(26,26,26,0.8);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--splash-white);
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.9), 0 0 50px rgba(255,0,0,0.1);
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--splash-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--splash-white);
    margin: 2rem 0;
    text-shadow: 0 0 20px rgba(255,0,0,0.3);
}

.price span {
    font-size: 1.5rem;
    color: var(--accent-silver);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-silver);
    transition: all 0.3s ease;
}

.pricing-features li:hover {
    color: var(--splash-white);
    transform: translateX(5px);
}

.pricing-features li::before {
    content: '✓';
    color: var(--splash-white);
    font-weight: 700;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,0,0,0.2);
    border-radius: 50%;
}

/* Footer */
footer {
    background: rgba(10,10,10,0.95);
    color: var(--accent-silver);
    padding: 3rem 2rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 1;
}

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

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

.footer-links a {
    color: var(--accent-silver);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--splash-white);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--splash-white);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-detail-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
    }

    .nav-cta-group {
        gap: 0.5rem;
    }

    .nav-cta-group .cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .hero {
        padding: 1.5rem 1rem;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .explore-hero h1 {
        font-size: 2.5rem;
    }
    
    .explore-nav-links {
        gap: 0.5rem;
        padding: 0.5rem;
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .explore-nav-links .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .feature-detail-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }

    .testimonial-slide {
        grid-template-columns: 1fr;
    }

    .testimonials-slider .slider-arrow.prev {
        left: -50px;
    }

    .testimonials-slider .slider-arrow.next {
        right: -50px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .explore-hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .feature-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .feature-detail-header h3 {
        font-size: 1.25rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .testimonials-slider .slider-arrow {
        display: none;
    }

    .explore-nav-links {
        gap: 0.25rem;
    }

    .explore-nav-links .nav-link span {
        display: none;
    }

    .explore-nav-links .nav-link i {
        margin-right: 0;
    }

    .creator-header {
        padding: 1.5rem;
    }

    .creator-story {
        padding: 1.5rem;
    }

    .creator-mission, .creator-values {
        margin: 2rem 0;
    }
}

/* Download Trial Button */
.download-trial-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Pricing Buttons Container */
.pricing-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.pricing-buttons .secondary-btn {
    background: transparent;
    color: var(--splash-white);
    border: 2px solid var(--splash-white);
}

/* Download Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Content */
.modal-content {
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid var(--splash-white);
    border-radius: 16px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s ease;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.9),
                0 0 60px rgba(255, 0, 0, 0.2);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--splash-white);
}

.modal-close:hover {
    background: var(--splash-white);
    color: var(--deep-black);
    transform: rotate(90deg);
}

.modal-close i {
    width: 20px;
    height: 20px;
}

/* Modal Header */
.modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(120, 0, 0, 0.2), rgba(80, 0, 0, 0.1));
}

.modal-header i {
    font-size: 3rem;
    color: var(--splash-white);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.4));
}

.modal-header h2 {
    font-size: 1.75rem;
    color: var(--splash-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

/* Modal Body */
.modal-body {
    padding: 2rem 2.5rem 2.5rem;
}

.modal-description {
    color: var(--accent-silver);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
}

.modal-description strong {
    color: var(--splash-white);
}

/* Trial Info List */
.trial-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.trial-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--accent-silver);
    transition: all 0.3s ease;
}

.trial-info-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trial-info-item:hover {
    color: var(--splash-white);
    transform: translateX(5px);
}

.trial-info-item i {
    color: var(--splash-white);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Trial Notice */
.trial-notice {
    background: linear-gradient(135deg, rgba(120, 0, 0, 0.2), rgba(80, 0, 0, 0.1));
    border-left: 3px solid var(--splash-white);
    border-radius: 0 8px 8px 0;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.trial-notice i {
    color: var(--splash-white);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.trial-notice p {
    color: var(--accent-silver);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Modal Actions */
.modal-actions {
    text-align: center;
}

.download-status {
    color: var(--splash-white);
    font-size: 1rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.manual-download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-silver);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.manual-download-link:hover {
    color: var(--splash-white);
    border-color: var(--splash-white);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.manual-download-link i {
    width: 18px;
    height: 18px;
}

/* Modal Responsive */
@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .modal-header {
        padding: 2rem 1.5rem 1.25rem;
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-description {
        font-size: 1rem;
    }

    .trial-info {
        padding: 1rem;
    }

    .trial-info-item {
        font-size: 0.95rem;
    }
}