/* ========================================
   RESET & BASE
   ======================================== */

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

html, body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Color Palette - Premium Dark Theme */
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: rgba(139, 92, 246, 0.1);
    --accent: #A78BFA;
    
    --bg-primary: #020617;
    --bg-secondary: #0F172A;
    --bg-tertiary: #1E293B;
    
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.04);
    
    --success: #10B981;
    --warning: #F59E0B;
    
    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Borders & Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Soft Glow Shadows */
    --shadow-sm: 0 0 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 0 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 0 40px rgba(139, 92, 246, 0.15);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.015em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

/* ========================================
   HEADER & NAV (Floating Glass)
   ======================================== */

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.8); /* Semi-transparent bg-primary */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-md) 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    width: 100%;
    padding: 0 var(--space-md); /* Reduced inner padding since container has padding */
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
    z-index: 1001;
}

.mobile-menu-btn {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.main-nav a:hover {
    color: white;
}

/* Navbar CTA Button */
.btn-nav-cta {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.btn-nav-cta:hover {
    background: white;
    color: black;
    transform: translateY(-1px);
}

.mobile-only-cta {
    display: none;
}

@media (max-width: 768px) {
    .header-content {
        padding: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        display: none; /* Hide main nav links on mobile by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-primary);
        flex-direction: column;
        padding: var(--space-xl);
        border-bottom: 1px solid var(--border);
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-only-cta {
        display: inline-block;
        margin-top: var(--space-md);
        background: var(--primary);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        text-align: center;
        width: 100%;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    padding: 8rem 0 var(--space-3xl);
    background: var(--bg-primary);
    position: relative;
    /* overflow: hidden; removed to prevent fixed pos conflicts */
    color: white;
}

/* Radial Gradient Glow */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200%;
    background: radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Hero Waveform Animation */
.hero-waveform {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
    animation: waveform-breathe 8s ease-in-out infinite;
    mix-blend-mode: screen;
    filter: blur(1px);
}

@keyframes waveform-breathe {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Removed Glows for Clean Look */
.hero-bg-glow {
    display: none;
}

/* Removed Grain and multi-blob styles */
.hero-grain {
    display: none;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Typography & Animations */
.hero h1 {
    margin-bottom: var(--space-lg);
    color: white;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

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

@keyframes float-glow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 40px); }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 32px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

/* Floating UI Cards */
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    white-space: nowrap;
}

.card-1 { top: 10%; left: -5%; animation-delay: 0s; }
.card-2 { top: 20%; right: -10%; animation-delay: 2s; }
.card-3 { bottom: 25%; left: 5%; animation-delay: 4s; }

@media (max-width: 900px) {
    .float-card { display: none; }
}

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

/* Hero Social Proof */
.hero-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.proof-line {
    font-size: 1.15rem;
    color: #FFFFFF;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Updated Button Styles for Hero - Removed to use global classes */

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-body);
    letter-spacing: -0.01em;
    text-decoration: none;
}

/* Dark Premium Button */
.btn-primary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 rgba(0,0,0,0);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
    transform: translateY(-2px);
    color: white;
}

.btn-primary-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.05rem;
}

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

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: var(--bg-tertiary);
}

/* Glassmorphism Button */
.btn-tool {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    margin-top: var(--space-lg);
    width: auto;
    align-self: flex-start;
}

.btn-tool:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: white;
}

/* ========================================
   SECTIONS
   ======================================== */

section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.intro-section {
    background: var(--bg-primary);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto;
}

.section-intro h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ========================================
   TOOLS SECTION
   ======================================== */

.tools-section {
    background: var(--bg-secondary);
    position: relative;
}

.tools-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #020617);
    pointer-events: none;
    z-index: 1;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 24px;
    grid-template-areas:
        "eleven eleven eleven"
        "listnr listnr murf"
        "fliki synthesys murf";
}

/* Grid Areas */
.area-eleven { grid-area: eleven; }
.area-listnr { grid-area: listnr; }
.area-murf { grid-area: murf; }
.area-fliki { grid-area: fliki; }
.area-synthesys { grid-area: synthesys; }

/* Tool Card Banner Style */
.tool-card {
    position: relative;
    background: #1e293b;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    min-height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    isolation: isolate;
    opacity: 1 !important;
}

.tool-card::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Removed background-color to let parent color show through */
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
    z-index: 1;
    opacity: 0.3;
    filter: saturate(1.1);
}

.tool-card::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Added vignette and darker gradient for better text contrast */
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.95) 100%);
    z-index: 1;
    pointer-events: none;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.5); /* Vignette effect */
}

/* Ensure text is bright and on top */
.tool-header,
.tool-description,
.tool-features,
.btn-tool {
    position: relative;
    z-index: 2;
    opacity: 1 !important;
    color: #FFFFFF !important; /* Enforce pure white */
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Subtle shadow for readability */
}

/* Make text bolder */
.tool-header h3 {
    font-weight: 700;
}

.tool-description {
    font-weight: 500; /* Increased from normal */
}

.tool-card:hover::before {
    transform: scale(1.05);
}

.tool-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.7);
    z-index: 5;
    transform: translateY(-2px);
}

/* Card Index Number - Removed */
/* .card-index { ... } */

/* Partner/Featured Badge */
.partner-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.35);
    color: #ffffff;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.35);
    z-index: 3;
    letter-spacing: 0.02em;
}

/* Bento Grid Spans */
.tool-card.span-2 {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .tool-card.span-2 {
        grid-column: span 1;
    }
}

.tool-card.compact {
    padding: var(--space-lg);
}

.tool-card.compact .tool-description {
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.tool-card.compact .tool-features {
    display: none;
}



/* Featured Card Style (Banner) */
.featured-card {
    border-color: rgba(139, 92, 246, 0.5);
}

.featured-card::after {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(15, 23, 42, 0.95) 80%);
}

.featured-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

.featured-card .card-index {
    color: rgba(255, 255, 255, 0.1);
}

.social-proof {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin-top: var(--space-sm);
    font-weight: 500;
}

.tool-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.tool-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.tool-header h3 a {
    color: white;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.tool-header h3 a:hover {
    color: var(--primary);
}

.tool-badge {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.tool-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.tool-benefit {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
    border-left: 3px solid var(--accent);
}

.benefit-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.tool-benefit span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.feature-tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========================================
   USE CASES SECTION
   ======================================== */

.use-cases-section {
    background: var(--bg-primary);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-xl);
}

.use-case-card {
    text-align: center;
    padding: var(--space-xl);
    background: transparent;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: default;
    transition: all var(--transition-base);
}

.use-case-card:hover .use-case-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
}

.use-case-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    padding: var(--space-md);
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all var(--transition-base);
}

.use-case-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.use-case-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    color: white;
}

.use-case-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* ========================================
   GUIDES SECTION
   ======================================== */

.guides-section {
    background: var(--bg-secondary);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.guide-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.guide-card:hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.guide-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}

.guide-card h3 a {
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.guide-card h3 a:hover {
    color: var(--primary);
}

.guide-card p {
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.guide-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: gap var(--transition-fast);
}

.guide-link:hover {
    gap: 0.25rem;
}

/* ========================================
   ARTICLE & BLOG
   ======================================== */

.partner-disclosure {
    text-align: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--space-xl);
    color: var(--text-muted);
}

.table-container {
    overflow-x: auto;
    margin-bottom: var(--space-xl);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-secondary);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Forces scroll on small screens */
}

th, td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: var(--text-primary);
}

td {
    color: var(--text-secondary);
}

tr:last-child td {
    border-bottom: none;
}

.article-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
    padding: 0 var(--space-md);
}

.article-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    background: linear-gradient(135deg, #FFFFFF 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.article-meta {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.article-content {
    max-width: 800px; /* Enhanced readability width */
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* SaaS Typography Polish */
.article-content p,
.article-content li {
    line-height: 1.8;
    letter-spacing: -0.01em;
    color: #CBD5E1; /* Premium soft gray */
    margin-bottom: 3rem; /* Significantly increased spacing */
    font-size: 1.1rem; /* Slightly larger for better readability */
}

.article-content ul,
.article-content ol {
    margin-bottom: 3rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 1rem;
}

.article-content h1,
.article-content h2,
.article-content h3 {
    font-weight: 800; /* Bolder */
    color: #FFFFFF;
    margin-top: 5rem; /* Even more air above */
    margin-bottom: 2.5rem; /* More air below */
    letter-spacing: -0.02em;
}

.article-content strong, 
.article-content b {
    color: #FFFFFF;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2); /* Subtle glow */
}

/* Verdict Box */
.verdict-box {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.verdict-box h3 {
    color: var(--primary);
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.verdict-box p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Info Box */
.info-box {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.info-box p {
    margin-bottom: 0;
    color: #D1FAE5;
}

/* Affiliate Box */
.affiliate-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    margin: var(--space-2xl) 0;
}

.affiliate-box h3 {
    margin-top: 0;
    margin-bottom: var(--space-md);
    color: white;
}

.affiliate-box p {
    margin-bottom: var(--space-lg);
}

/* Article Nav */
.article-nav {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.article-nav h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

/* Link Styling */
.article-content a {
    color: #D8B4FE; /* Neon Purple */
    text-decoration: none;
    border-bottom: 1px solid rgba(216, 180, 254, 0.3);
    transition: all 0.2s ease;
    font-weight: 600;
}

.article-content a:hover {
    color: #fff;
    border-bottom-color: #fff;
    text-shadow: 0 0 10px rgba(216, 180, 254, 0.5);
}

/* Fix for buttons inside article content */
.article-content .btn {
    border-bottom: none;
    color: white;
}

.article-content .btn:hover {
    border-bottom: none;
    text-shadow: none;
    color: white;
    /* Ensure global btn-primary hover effects apply */
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: var(--bg-primary);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-2xl);
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1), transparent 70%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.cta-content h2 {
    margin-bottom: var(--space-lg);
    font-size: clamp(2rem, 4vw, 3rem);
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-item {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-item h3 {
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--text-secondary);
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: var(--space-3xl) 0 var(--space-xl);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-section h4 {
    color: white;
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section ul li a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Social Icons */
.footer-contact {
    margin-top: var(--space-lg);
}

.footer-contact p {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    align-items: center;
}

.social-link {
    color: var(--text-secondary);
    transition: color var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--primary); /* Brand purple/blue */
}

.social-link svg {
    width: 22px; /* 20px-24px */
    height: 22px;
    stroke-width: 2;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* ========================================
   ARTICLE UI ENHANCEMENTS (New)
   ======================================== */

/* 1. Quick Verdict Box */
.quick-verdict-box {
    position: relative;
    background: var(--bg-secondary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2xl);
    margin-top: var(--space-lg);
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.15); /* Neon Glow */
}

.quick-verdict-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* Border width */
    border-radius: var(--radius-lg);
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.quick-verdict-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
    justify-content: center;
}

@media (min-width: 600px) {
    .quick-verdict-content {
        flex-direction: row;
        justify-content: space-around;
    }
}

.verdict-item {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-align: center;
}

.verdict-item strong {
    display: block;
    color: white;
    font-size: 1.3rem;
    margin-top: 0.5rem;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

/* 2. Snapshot Table */
.snapshot-table-container {
    margin-bottom: var(--space-xl);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.3); /* Neon Border */
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15); /* Neon Glow */
    background: var(--bg-tertiary);
}

.snapshot-table {
    width: 100%;
    border-collapse: collapse;
}

.snapshot-table th {
    background: rgba(139, 92, 246, 0.15);
    color: white;
    padding: var(--space-md);
    text-align: left;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
}

.snapshot-table td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 1rem;
}

.snapshot-table tr:last-child td {
    border-bottom: none;
}

.star-rating {
    color: var(--warning);
    letter-spacing: 2px;
    font-size: 1.1rem;
}

/* 3. Rating Bars */
.rating-bars-container {
    margin-bottom: var(--space-2xl);
    background: rgba(255, 255, 255, 0.03);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(139, 92, 246, 0.3); /* Neon Border */
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15); /* Neon Glow */
}

.rating-item {
    margin-bottom: var(--space-lg);
}

.rating-item:last-child {
    margin-bottom: 0;
}

.rating-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

.rating-bar-bg {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    transition: width 1.5s ease-out;
}

.rating-score {
    color: var(--accent);
    font-weight: 700;
}

/* 4. Persona Cards (Who Is It For) */
.persona-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
    .persona-cards-container {
        grid-template-columns: 1fr;
    }
}

.persona-card {
    background: linear-gradient(145deg, var(--bg-tertiary) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3); /* Neon Border */
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
    height: 100%;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.1); /* Subtle Glow */
}

.persona-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

.persona-card h4 {
    color: white;
    margin-bottom: var(--space-lg);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: var(--space-md);
}

.persona-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.persona-card li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.persona-card li:last-child {
    margin-bottom: 0;
}

.persona-card li::before {
    content: '✓';
    color: var(--success);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

/* 5. Visual Badges */
.visual-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    margin-left: 12px;
    vertical-align: middle;
    letter-spacing: 0.05em;
    position: relative;
    top: -2px;
}

.badge-eleven {
    background: rgba(16, 185, 129, 0.15); /* Emerald tint */
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

.badge-murf {
    background: rgba(59, 130, 246, 0.15); /* Blue tint */
    color: #60A5FA;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.1);
}