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

:root {
    /* Purple Color Scheme */
    --primary: #250e67;
    --primary-dark: #1a0a4a;
    --primary-light: #3a1a8f;
    --secondary: #6366f1;
    --accent: #818cf8;
    --green: #10b981;
    --dark: #111827;
    --text: #111827;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #250e67;
    --border: #e5e7eb;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

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

/* Subtle Animated Background - Dark */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgb(54, 54, 64);
    opacity: 1;
}

/* Minimized Particles */
.particles {
    display: none;
}

.particle {
    display: none;
}

/* Header - Clean Dark */
header {
    padding: 16px 0;
    position: sticky;
    top: 0;
    background: rgb(54, 54, 64);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
}

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

header nav {
    padding: 0 !important;
}

header.scrolled {
    background: rgba(54, 54, 64, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(135deg, #250e67 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.03em;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    padding-left: 0;
    position: relative;
    left: 0;
}

.logo:hover {
    opacity: 0.8;
    transform: none;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
    padding-right: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.nav-links a:not(.btn):hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.1);
}

/* Buttons - Equiem Style */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    display: none;
}

.btn-primary {
    background: #250e67;
    color: white;
    box-shadow: none;
}

.btn-primary:hover {
    background: #1a0a4a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* Hero Section - Split Layout Like Artisan */
.hero {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #250e67 0%, #1a0a4a 100%);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 100%;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.1s backwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.2s backwards;
}

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s cubic-bezier(0.28, 0.11, 0.32, 1) 0.3s backwards;
}

.hero-mockup {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    grid-template-rows: auto auto;
}

.mockup-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.mockup-card:first-child {
    grid-column: 1;
    background: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%);
}

.mockup-card:nth-child(2) {
    grid-column: 2;
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
}

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

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 72px;
    letter-spacing: -0.02em;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #250e67, #6366f1, #818cf8);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(30, 58, 95, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 48px 36px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #250e67, #6366f1, #818cf8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 0 20px rgba(30, 58, 95, 0.5);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--border);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.feature-card p {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #250e67 0%, #2d4a6f 50%, #6366f1 100%);
    color: white;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 56px;
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta p {
    font-size: 22px;
    margin-bottom: 48px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background: white;
    color: #250e67;
    font-size: 18px;
    padding: 18px 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.cta .btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 60px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

/* Footer */
footer {
    padding: 80px 0 32px;
    background: var(--dark);
    color: #94a3b8;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-section a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 32px;
    text-align: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .cta h2 {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .mockup-card {
        min-height: 150px;
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 4px;
    }

    .nav-links a:not(.btn) {
        display: none;
    }
}

/* Feature Detail Sections */
.email-section,
.browser-section,
.linkedin-section {
    padding: 120px 0;
    position: relative;
}

.email-section {
    background: white;
}

.browser-section {
    background: var(--bg-light);
}

.linkedin-section {
    background: white;
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-content.reverse {
    direction: rtl;
}

.split-content.reverse > * {
    direction: ltr;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(59, 130, 246, 0.1));
    border: 2px solid;
    border-image: linear-gradient(135deg, #250e67, #6366f1) 1;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.content-left h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.2;
}

.lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.feature-item-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-item-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.3);
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
}

/* Email Card */
.feature-visual {
    position: relative;
}

.email-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.email-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #250e67, #6366f1, #818cf8);
}

.email-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.email-from {
    font-weight: 600;
    color: var(--dark);
}

.email-badge {
    padding: 6px 12px;
    background: linear-gradient(135deg, #250e67, #6366f1);
    color: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.email-subject {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.email-preview {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.email-actions {
    display: flex;
    gap: 12px;
}

.email-action-btn {
    padding: 12px 28px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-action-btn:first-child {
    background: linear-gradient(135deg, #250e67, #6366f1);
    color: white;
}

.email-action-btn:first-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.4);
}

.email-action-btn.secondary {
    background: var(--bg-light);
    color: var(--text);
}

.email-action-btn.secondary:hover {
    background: var(--border);
}

/* Browser Mockup */
.browser-mockup {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
}

.browser-bar {
    background: var(--bg-light);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
}

.browser-dots span:nth-child(1) {
    background: #ef4444;
}

.browser-dots span:nth-child(2) {
    background: #fbbf24;
}

.browser-dots span:nth-child(3) {
    background: #22c55e;
}

.browser-url {
    flex: 1;
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.browser-content {
    padding: 32px;
}

.automation-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.automation-step:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

.automation-step.disabled {
    opacity: 0.5;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #250e67, #6366f1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
    font-weight: 500;
    color: var(--dark);
}

.step-status {
    font-size: 20px;
    color: var(--primary);
}

.step-status.active {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* LinkedIn Card */
.linkedin-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.linkedin-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.linkedin-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #250e67, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.linkedin-info {
    flex: 1;
}

.linkedin-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.linkedin-info p {
    color: var(--text-light);
    font-size: 14px;
}

.connection-badge {
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(59, 130, 246, 0.1));
    color: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid var(--primary);
}

.linkedin-message {
    margin-bottom: 24px;
}

.message-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.message-text {
    color: var(--dark);
    line-height: 1.6;
    font-style: italic;
}

.linkedin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #250e67, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

/* Responsive for Feature Sections */
@media (max-width: 968px) {
    .split-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .split-content.reverse {
        direction: ltr;
    }

    .content-left h2 {
        font-size: 36px;
    }

    .email-section,
    .browser-section,
    .linkedin-section {
        padding: 80px 0;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: #250e67;
    color: white;
}

::-moz-selection {
    background: #250e67;
    color: white;
}

