/* 🔘 BotFolio. V6 - Landing Style Sheet (Quiet Luxury Light Theme) */

:root {
    --bg: #fafafa; /* Zinc-50 */
    --bg-warm: #fcfcfc;
    --card: rgba(255, 255, 255, 0.7); /* Translucent pure white */
    --border: rgba(228, 228, 231, 0.8); /* Zinc-200 */
    --border-hover: rgba(161, 161, 170, 0.8); /* Zinc-400 */
    --text: #09090b; /* Zinc-950 */
    --text-muted: #52525b; /* Zinc-600 */
    --primary: #d97706; /* Amber-600 for readable light contrast */
    --primary-glow: rgba(217, 119, 6, 0.1);
    --secondary: #0284c7; /* Sky-600 */
    --emerald: #059669; /* Emerald-600 */
    --purple-spark: #9E7AFF;
    --pink-spark: #FE8BBB;
    --font-head: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Widescreen Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 🌌 Ambient Luxury Blur Blobs (Soft Pastel Pastes) */
.blur-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.blob-1 {
    top: -100px;
    left: -100px;
    background-color: #fef3c7; /* Very light amber */
}

.blob-2 {
    top: 600px;
    right: -100px;
    background-color: #e0f2fe; /* Very light sky */
}

.blob-3 {
    bottom: 200px;
    left: 20%;
    background-color: #d1fae5; /* Very light emerald */
}

/* 🔘 STICKY HEADER & LOGO */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    background-color: rgba(250, 250, 250, 0.8);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 🧠 THE SPARKLES LOGO (EXACT REPLICA) */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.logo-text-spark {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    position: relative;
    padding-right: 2px;
}

.sparkle {
    position: absolute;
    font-size: 8px;
    pointer-events: none;
    animation: sparkle-pulse 2s infinite ease-in-out;
}

.sparkle-1 {
    top: -6px;
    left: -8px;
    color: var(--purple-spark);
    animation-delay: 0.2s;
}

.sparkle-2 {
    bottom: -4px;
    right: -4px;
    color: var(--pink-spark);
    animation-delay: 0.8s;
}

.sparkle-3 {
    top: 4px;
    right: -12px;
    color: var(--purple-spark);
    animation-delay: 1.4s;
    font-size: 6px;
}

@keyframes sparkle-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.6) rotate(45deg); opacity: 1; }
}

.version-tag {
    color: var(--text-muted);
    font-family: monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-style: italic;
    margin-left: 6px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: var(--transition);
}

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

/* 🔘 BUTTON STYLES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 10px;
    border-radius: 8px;
}

.btn-primary {
    background-color: var(--text); /* Black button in light theme */
    color: var(--bg);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #27272a;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: rgba(0, 0, 0, 0.02);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--text);
    background-color: rgba(0, 0, 0, 0.02);
}

.btn-block {
    display: flex;
    width: 100%;
    text-align: center;
}

/* 🚀 HERO SECTION styling */
.hero-section {
    padding: 160px 0 100px 0;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge {
    background-color: rgba(217, 119, 6, 0.08);
    color: var(--primary);
    border: 1px solid rgba(217, 119, 6, 0.2);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Glass Frame & Floating mockups */
.glass-frame {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}

.glass-frame:hover {
    border-color: var(--border-hover);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.mockup-img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

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

/* 🛡️ CORE METRICS GRID */
.metrics-section {
    padding: 60px 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.glass-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.metric-card h3 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.metric-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

/* 🔘 THEMES SWITCHING SECTION */
.themes-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.01), transparent);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto;
}

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

.theme-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.theme-card {
    position: relative;
    overflow: hidden;
}

.theme-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid rgba(0,0,0,0.1);
    z-index: 10;
}

.theme-badge.dark {
    background-color: rgba(9, 9, 11, 0.9);
    color: #fff;
}

.theme-badge.light {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
}

.image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.theme-card:hover .image-wrapper img {
    transform: scale(1.03);
}

/* ⚡ FEATURES ROWS styling */
.features-section {
    padding: 100px 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-row.reverse {
    grid-template-columns: 1.1fr 1fr;
    direction: rtl;
}

.feature-row.reverse .feature-content-box {
    direction: ltr; /* Reset text direction for content */
}

.feat-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.feature-content-box h3 {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 16px;
}

.feature-content-box p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li::before {
    content: "🔘";
    font-size: 10px;
    color: var(--primary);
}

/* 📊 INTERLOCKING DETAILS GRID */
.matrix-section, .warden-section {
    padding: 80px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.align-center {
    align-items: center;
}

/* 💳 PRICING / LICENSING SECTION */
.pricing-section {
    padding: 100px 0 160px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0 auto;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-radius: 36px;
}

.pricing-card.premium {
    background: rgba(18, 18, 22, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.pricing-card.premium::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    margin: -1px;
}

.pricing-card.premium h3 {
    color: #ffffff;
}

.pricing-card.premium .price {
    color: #ffffff;
}

.pricing-card.premium .price span {
    color: rgba(255, 255, 255, 0.5) !important;
}

.pricing-card.premium .desc {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card.premium .card-body li {
    color: rgba(255, 255, 255, 0.85);
}

/* 2 AY HEDİYE! Badge Visibility on Premium Card */
.pricing-card.premium .card-badge.gold {
    background-color: #ffffff;
    color: var(--primary);
    border-color: #ffffff;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Premium Buttons Styling for Great Contrast */
.pricing-card.premium .btn-primary {
    background-color: #ffffff;
    color: #09090b;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.pricing-card.premium .btn-primary:hover {
    background-color: #f4f4f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.pricing-card.premium .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.pricing-card.premium .btn-outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

.card-header {
    margin-bottom: 32px;
}

.card-badge {
    background-color: rgba(0, 0, 0, 0.03);
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.card-badge.gold {
    background-color: rgba(217, 119, 6, 0.08);
    color: var(--primary);
    border-color: rgba(217, 119, 6, 0.2);
}

.pricing-card h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.price {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 900;
    color: var(--text);
    margin: 16px 0;
}

.desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.card-body ul {
    list-style: none;
    margin-bottom: 40px;
}

.card-body li {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 🔘 MAIN FOOTER */
.main-footer {
    border-top: 1px solid var(--border);
    background-color: rgba(245, 245, 245, 0.5);
    padding: 60px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #71717a; /* Zinc-500 */
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* 📱 RESPONSIVE STYLING */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-content p {
        margin: 0 auto 40px auto;
    }
    
    .grid-3, .theme-comparison, .feature-row, .feature-row.reverse, .grid-2, .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-row.reverse {
        direction: ltr;
    }
    
    .nav-links {
        display: none; /* Hide link lists on mobile/tablet for clean UI */
    }
    
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
