@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Anton&family=Inter:wght@400;500;600&display=swap');

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

html {
    scroll-behavior: smooth;
}

:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #0F0F0F;
    --text-primary: #FFFFFF;
    --text-secondary: #666666;
    --accent: #8B5CF6;
    --accent-secondary: #3B82F6;
    --accent-pink: #EC4899;
    --accent-glow: rgba(139, 92, 246, 0.5);
    --border: rgba(255, 255, 255, 0.06);
    --glow: rgba(139, 92, 246, 0.5);
}

::selection {
    background: var(--accent);
    color: var(--text-primary);
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1;
    cursor: crosshair;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
}

/* Advanced Noise Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    background: 
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjg1IiBudW1PY3RhdmVzPSI0IiBzZWVkPSI1Ii8+PGZlQ29sb3JNYXRyaXggdmFsdWVzPSIwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAyMCAtMTAiLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjYSkiLz48L3N2Zz4='),
        var(--gradient-mesh-1);
    mix-blend-mode: screen;
    animation: noiseShift 8s infinite;
}

@keyframes noiseShift {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-5%, -5%); }
    66% { transform: translate(5%, 5%); }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh-3);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    animation: meshRotate 30s linear infinite;
}

@keyframes meshRotate {
    0% { transform: rotate(0deg) scale(1.5); }
    100% { transform: rotate(360deg) scale(1.5); }
}

/* Navigation Enhanced */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 40px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 16px 40px;
    background: rgba(10, 10, 10, 0.98);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 60px;
    flex: 1;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
}

.logo:hover {
    opacity: 0.8;
}

.logo::after {
    content: '®';
    position: absolute;
    top: 0;
    right: -12px;
    font-size: 10px;
    font-weight: 400;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.nav-right {
    display: flex;
    align-items: center;
}

.nav-cta {
    padding: 12px 28px;
    background: var(--accent);
    color: var(--text-primary);
    border: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    background: var(--accent-secondary);
}

/* Desktop/Mobile visibility classes */
.desktop-only {
    display: inline-block;
}

.mobile-only {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 40px 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Enhanced Grid Background with Purple/Blue Gradient */
.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(139, 92, 246, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.015) 1px, transparent 1px),
        var(--gradient-mesh-2);
    background-size: 60px 60px, 60px 60px, 100% 100%;
    animation: gridMove 30s linear infinite;
    opacity: 0.8;
}

.grid-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.08), transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.06), transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(236, 72, 153, 0.05), transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    33% { transform: scale(1.1) rotate(120deg); }
    66% { transform: scale(0.9) rotate(240deg); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Scattered Shapes - Multi-Layer Depth System */
.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Layer System for Depth */
.layer-back {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.layer-mid {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.layer-front {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.floating-shape {
    position: absolute;
    overflow: visible;
    opacity: 0;
    animation: fadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform-origin: center;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Background Layer Shapes - Large, Subtle */
.layer-back .shape-1 {
    width: 400px;
    height: 400px;
    top: -5%;
    right: -5%;
    background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.4), transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
    animation: floatSlow 20s ease-in-out infinite;
    animation-delay: 0s;
    opacity: 0.6;
}

.layer-back .shape-2 {
    width: 350px;
    height: 350px;
    bottom: -10%;
    left: -5%;
    background: radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.35), transparent 60%);
    border-radius: 50%;
    filter: blur(30px);
    animation: floatSlow 25s ease-in-out infinite reverse;
    animation-delay: 2s;
    opacity: 0.5;
}

.layer-back .shape-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 30%;
    background: radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.3), transparent 60%);
    border-radius: 50%;
    filter: blur(50px);
    animation: floatSlow 30s ease-in-out infinite;
    animation-delay: 4s;
    opacity: 0.4;
}

/* Mid Layer Shapes - Medium, Semi-transparent */
.layer-mid .shape-1 {
    /* Triangle */
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 180px solid rgba(139, 92, 246, 0.6);
    top: 15%;
    left: 10%;
    transform: rotate(-20deg);
    filter: blur(0.5px);
    animation: floatMid 15s ease-in-out infinite;
    animation-delay: 0.5s;
    opacity: 0.8;
}

.layer-mid .shape-2 {
    /* Diamond */
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.6), rgba(139, 92, 246, 0.5));
    transform: rotate(45deg);
    top: 60%;
    right: 15%;
    border-radius: 15px;
    animation: floatMid 18s ease-in-out infinite reverse;
    animation-delay: 1s;
    opacity: 0.7;
}

.layer-mid .shape-3 {
    /* Circle */
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.7), rgba(16, 185, 129, 0.5));
    border-radius: 50%;
    bottom: 25%;
    left: 25%;
    animation: floatMid 20s ease-in-out infinite;
    animation-delay: 1.5s;
    opacity: 0.8;
}

/* Front Layer Shapes - Small, Sharp, Vibrant */
.layer-front .shape-1 {
    /* Star */
    width: 80px;
    height: 80px;
    top: 25%;
    right: 20%;
    filter: drop-shadow(0 10px 20px rgba(249, 115, 22, 0.4));
    animation: floatFast 10s ease-in-out infinite, rotateSlow 20s linear infinite;
    animation-delay: 0.2s;
    opacity: 0.9;
}

.layer-front .shape-1::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.9), rgba(236, 72, 153, 0.8));
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.layer-front .shape-2 {
    /* Small Diamond */
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 1), rgba(59, 130, 246, 0.9));
    transform: rotate(45deg);
    top: 70%;
    left: 8%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
    animation: floatFast 12s ease-in-out infinite reverse;
    animation-delay: 0.8s;
    opacity: 1;
}

.layer-front .shape-3 {
    /* Pentagon */
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(59, 130, 246, 0.95));
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    bottom: 35%;
    right: 10%;
    animation: floatFast 14s ease-in-out infinite;
    animation-delay: 1.2s;
    filter: drop-shadow(0 12px 24px rgba(16, 185, 129, 0.3));
    opacity: 0.95;
}

.layer-front .shape-4 {
    /* Cross */
    width: 50px;
    height: 50px;
    top: 45%;
    left: 35%;
    animation: floatFast 11s ease-in-out infinite, rotateSlow 25s linear infinite reverse;
    animation-delay: 1.6s;
    opacity: 0.85;
}

.layer-front .shape-4::before,
.layer-front .shape-4::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.9), rgba(249, 115, 22, 0.9));
    border-radius: 4px;
}

.layer-front .shape-4::before {
    width: 15px;
    height: 50px;
    top: 0;
    left: 17.5px;
}

.layer-front .shape-4::after {
    width: 50px;
    height: 15px;
    top: 17.5px;
    left: 0;
}

/* Accent Shapes - Ultra small, decorative */
.layer-front .shape-5 {
    /* Tiny Triangle */
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(139, 92, 246, 0.8);
    top: 10%;
    left: 45%;
    animation: floatFast 9s ease-in-out infinite;
    animation-delay: 2s;
    opacity: 0.9;
}

.layer-front .shape-6 {
    /* Tiny Circle */
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, rgba(236, 72, 153, 1), rgba(139, 92, 246, 0.8));
    border-radius: 50%;
    bottom: 15%;
    left: 55%;
    animation: floatFast 13s ease-in-out infinite reverse;
    animation-delay: 2.5s;
    opacity: 1;
}

/* Animation Patterns for Different Layers */
@keyframes floatSlow {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    33% { 
        transform: translate(30px, -40px) scale(1.05);
    }
    66% { 
        transform: translate(-20px, 30px) scale(0.95);
    }
}

@keyframes floatMid {
    0%, 100% { 
        transform: translateY(0) translateX(0);
    }
    25% { 
        transform: translateY(-20px) translateX(10px);
    }
    50% { 
        transform: translateY(10px) translateX(-5px);
    }
    75% { 
        transform: translateY(-10px) translateX(-10px);
    }
}

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

@keyframes rotateSlow {
    0% { 
        transform: rotate(0deg);
    }
    100% { 
        transform: rotate(360deg);
    }
}

/* Remove parallax depth transforms that might hide elements */
.layer-back,
.layer-mid,
.layer-front {
    transform: none;
}

/* Hero Content - Better Proportions */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.hero h1 {
    font-family: 'Oswald', 'Arial Black', sans-serif;
    font-size: clamp(100px, 18vw, 280px);
    font-weight: 700;
    line-height: 0.72;
    letter-spacing: -0.07em;
    text-transform: uppercase;
    position: relative;
    transform: scaleX(0.82);
    transform-origin: left center;
}

.hero h1 .line-1 {
    display: block;
    overflow: hidden;
    padding-bottom: 20px;
}

.hero h1 .line-1 span {
    display: inline-block;
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.1s;
    transform: translateY(120%);
}

.hero h1 .line-2 {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px var(--text-primary);
    text-stroke: 2px var(--text-primary);
    overflow: hidden;
    opacity: 0.8;
}

.hero h1 .line-2 span {
    display: inline-block;
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
    transform: translateY(120%);
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

/* Hero Meta - Golden Ratio Spacing */
.hero-meta {
    display: grid;
    grid-template-columns: 1.618fr 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding-left: 5%;
}

.hero-description {
    max-width: 420px;
}

.hero-description h2 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-description p {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
    }
}

.hero-stats {
    display: flex;
    gap: 48px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: 'Oswald', 'Arial Black', sans-serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(180deg, var(--text-primary), rgba(255, 255, 255, 0.4));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.05em;
    transform: scaleX(0.75);
    transform-origin: left;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    animation: bounce 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator::before {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3));
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Section with Purple/Blue Gradient Mesh Background */
.section {
    padding: 140px 40px;
    position: relative;
    background: 
        radial-gradient(ellipse at top left, rgba(139, 92, 246, 0.02), transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.02), transparent 40%),
        var(--bg-primary);
}

.section:nth-child(even) {
    background: 
        radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.02), transparent 40%),
        radial-gradient(ellipse at bottom left, rgba(236, 72, 153, 0.02), transparent 40%),
        linear-gradient(180deg, var(--bg-secondary), var(--bg-primary)),
        var(--bg-secondary);
}

.section-header {
    max-width: 1600px;
    margin: 0 auto 100px;
}

.subtitle-with-btn {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.view-all-btn {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
}

.view-all-btn:hover {
    color: var(--text-primary);
    border-bottom-color: var(--accent);
}

.view-all-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-all-btn:hover::after {
    width: 100%;
}

.mobile-view-all {
    display: none;
}

.section-number {
    font-size: 200px;
    font-weight: 900;
    position: absolute;
    top: -80px;
    right: 40px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.section-header h2 {
    font-family: 'Oswald', 'Arial Black', sans-serif;
    font-size: clamp(60px, 10vw, 180px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transform: scaleX(0.85);
    transform-origin: left center;
}

.section-header h2 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-primary);
    text-stroke: 1px var(--text-primary);
}

.section-header .subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
}

/* Cards with Premium Design */
.cards-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 24px;
}

.card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 60%),
        linear-gradient(225deg, rgba(139, 92, 246, 0.02), transparent 60%),
        rgba(15, 15, 15, 0.6);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 48px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
            rgba(139, 92, 246, 0.15), 
            transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent, 
            rgba(139, 92, 246, 0.1), 
            rgba(59, 130, 246, 0.1), 
            transparent);
    animation: rotate 20s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card:hover::before {
    opacity: 1;
}

.card:hover::after {
    opacity: 0.5;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 60px rgba(139, 92, 246, 0.1);
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 60%),
        linear-gradient(225deg, rgba(139, 92, 246, 0.03), transparent 60%),
        rgba(15, 15, 15, 0.8);
}

.card-number {
    font-family: 'Oswald', 'Arial Black', sans-serif;
    font-size: 120px;
    font-weight: 700;
    opacity: 0.03;
    position: absolute;
    top: 20px;
    right: 40px;
    pointer-events: none;
    letter-spacing: -0.06em;
    transform: scaleX(0.7);
    transform-origin: right center;
}

.card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.card-meta {
    display: flex;
    gap: 24px;
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Feature Split Sections */
.feature-split {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    padding: 100px 0;
}

.feature-content h3 {
    font-family: 'Oswald', 'Arial Black', sans-serif;
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin-bottom: 30px;
    transform: scaleX(0.85);
    transform-origin: left center;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.feature-visual {
    aspect-ratio: 16/10;
    background: 
        linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05)),
        linear-gradient(225deg, rgba(236, 72, 153, 0.05), transparent),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMS41IiBudW1PY3RhdmVzPSI0Ii8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+'),
        rgba(15, 15, 15, 0.9);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.feature-visual:hover {
    transform: scale(1.02);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.feature-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50" y="50" text-anchor="middle" dy=".3em" fill="white" opacity="0.05" font-size="40" font-family="Arial Black">DEMO</text></svg>');
    background-size: cover;
    background-position: center;
}

/* Journal Grid */
.journal-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.journal-card {
    background: 
        linear-gradient(135deg, rgba(139, 92, 246, 0.02), transparent),
        rgba(15, 15, 15, 0.4);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(5px);
}

.journal-card::after {
    content: '→';
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 24px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.journal-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
}

.journal-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.journal-image {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

.journal-card:nth-child(1) .journal-image {
    background: 
        linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(59, 130, 246, 0.6)),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMS41IiBudW1PY3RhdmVzPSIxIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIwLjEiLz48L3N2Zz4=');
}

.journal-card:nth-child(2) .journal-image {
    background: 
        linear-gradient(135deg, rgba(236, 72, 153, 0.8), rgba(139, 92, 246, 0.6)),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMS41IiBudW1PY3RhdmVzPSIxIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIwLjEiLz48L3N2Zz4=');
}

.journal-card:nth-child(3) .journal-image {
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(16, 185, 129, 0.6)),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMS41IiBudW1PY3RhdmVzPSIxIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIwLjEiLz48L3N2Zz4=');
}

.journal-card:nth-child(4) .journal-image {
    background: 
        linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(59, 130, 246, 0.6)),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMS41IiBudW1PY3RhdmVzPSIxIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIwLjEiLz48L3N2Zz4=');
}

.journal-card:nth-child(5) .journal-image {
    background: 
        linear-gradient(135deg, rgba(249, 115, 22, 0.8), rgba(236, 72, 153, 0.6)),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMS41IiBudW1PY3RhdmVzPSIxIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIwLjEiLz48L3N2Zz4=');
}

.journal-card:nth-child(6) .journal-image {
    background: 
        linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(236, 72, 153, 0.6)),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMS41IiBudW1PY3RhdmVzPSIxIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIwLjEiLz48L3N2Zz4=');
}

.journal-type {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.journal-content {
    padding: 32px;
}

.journal-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.journal-excerpt {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.journal-date {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* CTA Section with Purple/Blue Gradients */
.cta-section {
    padding: 200px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.05), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.05), transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(236, 72, 153, 0.03), transparent 70%),
        var(--bg-primary);
}

.cta-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(139, 92, 246, 0.1), 
            rgba(59, 130, 246, 0.05),
            rgba(236, 72, 153, 0.05),
            rgba(16, 185, 129, 0.05),
            rgba(249, 115, 22, 0.05),
            rgba(139, 92, 246, 0.1));
    opacity: 0.3;
    animation: pulse 4s ease infinite, rotate 20s linear infinite;
    filter: blur(60px);
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.cta-section h2 {
    font-family: 'Oswald', 'Arial Black', sans-serif;
    font-size: clamp(80px, 12vw, 200px);
    font-weight: 700;
    line-height: 0.75;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    transform: scaleX(0.8);
    transform-origin: center;
}

.cta-section h2 span {
    display: block;
    background: linear-gradient(180deg, var(--accent), var(--text-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-button-primary {
    display: inline-block;
    padding: 20px 60px;
    background: var(--accent);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-button-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--text-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button-primary:hover {
    color: var(--bg-primary);
    transform: scale(1.05);
}

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

.cta-button-primary span {
    position: relative;
    z-index: 1;
}

/* Target Audience Section */
.audience-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.audience-card {
    background: 
        linear-gradient(135deg, rgba(139, 92, 246, 0.04), transparent 60%),
        linear-gradient(225deg, rgba(59, 130, 246, 0.02), transparent 60%),
        rgba(15, 15, 15, 0.4),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMiIgbnVtT2N0YXZlcz0iMSIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iMC4wMiIvPjwvc3ZnPg==');
    border: 1px solid var(--border);
    padding: 60px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.audience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(139, 92, 246, 0.05),
        0 0 40px rgba(139, 92, 246, 0.05);
    background: 
        linear-gradient(135deg, rgba(139, 92, 246, 0.06), transparent 60%),
        linear-gradient(225deg, rgba(59, 130, 246, 0.04), transparent 60%),
        rgba(15, 15, 15, 0.6);
}

.audience-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.audience-card h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 16px;
}

.audience-card h4 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

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

.audience-card li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 15px;
    position: relative;
    padding-left: 24px;
}

.audience-card li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 24px;
    font-weight: 700;
}

.audience-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
}

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

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.stat-desc {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.audience-cta {
    display: block;
    padding: 18px 32px;
    background: var(--accent);
    color: var(--text-primary);
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.audience-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

/* Newsletter Section */
.newsletter-section {
    padding: 120px 40px;
    background: 
        linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
        linear-gradient(225deg, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary), #0F0A1A),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjkiIG51bU9jdGF2ZXM9IjQiLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjYSkiIG9wYWNpdHk9IjAuMDMiLz48L3N2Zz4=');
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.15), transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.1), transparent 40%);
    opacity: 0.2;
    animation: rotate 30s linear infinite;
    filter: blur(40px);
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    font-family: 'Oswald', 'Arial Black', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 20px;
    transform: scaleX(0.9);
    transform-origin: left center;
}

.newsletter-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
}

.newsletter-form-wrapper {
    width: 100%;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}

.newsletter-input {
    flex: 1;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.newsletter-input:focus::placeholder {
    opacity: 0.6;
    transform: translateX(5px);
}

.newsletter-submit {
    padding: 18px 40px;
    background: var(--accent);
    color: var(--text-primary);
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.newsletter-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.newsletter-submit:active::before {
    width: 300px;
    height: 300px;
}

.newsletter-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.newsletter-submit:disabled {
    cursor: not-allowed;
    animation: pulse 1.5s infinite;
}

.newsletter-submit.success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    animation: successPop 0.5s ease;
}

.newsletter-submit.error {
    background: linear-gradient(135deg, #f44336, #da190b);
    box-shadow: 0 10px 30px rgba(244, 67, 54, 0.3);
    animation: errorShake 0.5s ease;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

@keyframes successPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes errorShake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

/* Newsletter message container */
#newsletter-message-container {
    width: 100%;
    margin-top: 16px;
}

/* Newsletter message styles */
.newsletter-message {
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    backdrop-filter: blur(10px);
    width: 100%;
}

.newsletter-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    opacity: 0.1;
    z-index: -1;
}

.newsletter-message.success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.05));
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.15);
}

.newsletter-message.success::before {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.newsletter-message.error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15), rgba(244, 67, 54, 0.05));
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
    box-shadow: 0 4px 20px rgba(244, 67, 54, 0.15);
}

.newsletter-message.error::before {
    background: linear-gradient(135deg, #f44336, #da190b);
}

/* Icon animations for messages */
.newsletter-message.success::after {
    content: '✓';
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: bold;
    animation: checkmark 0.5s ease 0.2s both;
}

.newsletter-message.error::after {
    content: '⚠';
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    animation: warning 0.5s ease 0.2s both;
}

.newsletter-message.success,
.newsletter-message.error {
    padding-left: 52px; /* Make room for icon */
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes checkmark {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) scale(1) rotate(0);
    }
}

@keyframes warning {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0);
    }
    50% {
        transform: translateY(-50%) scale(1.2);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

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

.newsletter-benefits {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.newsletter-benefits span {
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-testimonials {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid var(--accent);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial cite {
    font-size: 12px;
    color: var(--text-secondary);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* About Section */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
    align-items: start;
}

.about-intro h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.about-stat {
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.about-stat:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.about-stat-number {
    font-family: 'Oswald', 'Arial Black', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
    transform: scaleX(0.9);
    transform-origin: center;
}

.about-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
}

.about-philosophy {
    margin-bottom: 60px;
}

.about-philosophy h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 24px;
}

.about-philosophy p {
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-style: italic;
}

.about-philosophy p:last-child {
    font-size: 16px;
    color: var(--text-secondary);
    font-style: normal;
}

.about-social {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-link::before {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.social-link[href*="linkedin"]::before {
    content: '🔗';
}

.social-link[href*="youtube"]::before {
    content: '▶️';
}

.social-link[href*="x.com"]::before,
.social-link[href*="twitter"]::before {
    content: '𝕏';
    font-weight: bold;
}

.social-link[href*="medium"]::before {
    content: '📝';
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 24px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.social-link:hover {
    color: var(--accent);
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover::after {
    width: calc(100% - 36px);
}

.about-visual {
    position: sticky;
    top: 100px;
}

.about-image {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--accent), transparent);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.about-image::after {
    content: 'THINK DIFFERENT';
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.05em;
    opacity: 0.1;
}

.about-caption {
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

/* Footer */
footer {
    padding: 80px 40px 40px;
    border-top: 1px solid var(--border);
    position: relative;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
}

.footer-brand h3 {
    font-family: 'Oswald', 'Arial Black', sans-serif;
    font-size: 56px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -0.04em;
    transform: scaleX(0.85);
    transform-origin: left center;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    max-width: 400px;
}

.footer-column h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--accent);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-links a[href*="linkedin"]::before {
    content: '🔗';
    font-size: 14px;
}

.footer-links a[href*="youtube"]::before {
    content: '▶️';
    font-size: 14px;
}

.footer-links a[href*="x.com"]::before,
.footer-links a[href*="twitter"]::before {
    content: '𝕏';
    font-size: 14px;
    font-weight: bold;
}

.footer-links a[href*="medium"]::before {
    content: '📝';
    font-size: 14px;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Tablet screens */
@media (max-width: 1024px) {
    .nav-left {
        gap: 40px;
    }

    .nav-links {
        gap: 24px;
    }

    .nav-links a {
        font-size: 11px;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .layer-back .shape-1,
    .layer-back .shape-2,
    .layer-back .shape-3 {
        filter: blur(20px);
        opacity: 0.3;
    }
    
    .layer-mid .shape-1,
    .layer-mid .shape-2,
    .layer-mid .shape-3 {
        opacity: 0.5;
    }
    
    .layer-front .shape-1,
    .layer-front .shape-2,
    .layer-front .shape-3,
    .layer-front .shape-4,
    .layer-front .shape-5,
    .layer-front .shape-6 {
        opacity: 0.7;
    }

    .hero h1 {
        font-size: clamp(60px, 12vw, 140px);
    }

    .section-header h2 {
        font-size: clamp(48px, 10vw, 120px);
    }

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

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

    .feature-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-meta {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        position: static;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 12px 20px;
        flex-direction: column;
        gap: 16px;
        background: rgba(10, 10, 10, 0.95);
    }

    .nav-left {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .logo {
        text-align: center;
        font-size: 20px;
    }

    .nav-links {
        display: flex;
        gap: 0;
        overflow-x: auto;
        padding: 0;
        margin: 0;
        width: 100%;
        justify-content: space-between;
        flex-wrap: nowrap;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding: 8px;
    }

    .nav-links li {
        flex: 1;
        text-align: center;
    }

    .nav-links a {
        font-size: 10px;
        white-space: nowrap;
        padding: 8px 4px;
        display: block;
        border-radius: 4px;
        transition: all 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(139, 92, 246, 0.1);
        color: var(--text-primary);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .section {
        padding: 80px 20px;
    }

    .subtitle-with-btn {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        text-align: left;
    }

    .view-all-btn {
        display: none;
    }

    .mobile-view-all {
        display: block;
        margin: 40px auto 0;
        padding: 16px 32px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border);
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: all 0.3s ease;
        text-align: center;
        border-radius: 4px;
        width: fit-content;
    }

    .mobile-view-all:hover {
        background: var(--accent);
        color: var(--text-primary);
        border-color: var(--accent);
    }

    .hero {
        padding: 100px 20px 80px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        gap: 60px;
    }

    .hero h1 {
        font-size: clamp(48px, 15vw, 72px);
        transform: scaleX(1);
        letter-spacing: -0.01em;
        line-height: 0.9;
        margin-bottom: 40px;
    }
    
    .hero h1 .line-1 {
        margin-bottom: 5px;
    }
    
    .hero h1 .line-2 {
        -webkit-text-stroke: 1px var(--text-primary);
        text-stroke: 1px var(--text-primary);
    }

    /* Keep shapes but adjust for mobile */
    .layer-back .shape-1,
    .layer-back .shape-2,
    .layer-back .shape-3 {
        filter: blur(30px);
        opacity: 0.15;
        transform: scale(0.5);
    }
    
    .layer-back .shape-1 {
        width: 200px;
        height: 200px;
        top: 5%;
        right: -20%;
    }
    
    .layer-back .shape-2 {
        width: 180px;
        height: 180px;
        bottom: 10%;
        left: -20%;
    }
    
    .layer-back .shape-3 {
        display: none;
    }
    
    .layer-mid .shape-1,
    .layer-mid .shape-2,
    .layer-mid .shape-3 {
        opacity: 0.3;
        transform: scale(0.4);
    }
    
    .layer-mid .shape-1 {
        top: 10%;
        left: -5%;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-bottom: 100px solid rgba(139, 92, 246, 0.4);
    }
    
    .layer-mid .shape-2 {
        width: 80px;
        height: 80px;
        top: 50%;
        right: 5%;
    }
    
    .layer-mid .shape-3 {
        width: 60px;
        height: 60px;
        bottom: 30%;
        left: 10%;
    }
    
    .layer-front .shape-1,
    .layer-front .shape-2,
    .layer-front .shape-3,
    .layer-front .shape-4,
    .layer-front .shape-5,
    .layer-front .shape-6 {
        opacity: 0.5;
        transform: scale(0.6);
    }
    
    .layer-front .shape-1 {
        width: 50px;
        height: 50px;
        top: 25%;
        right: 10%;
    }
    
    .layer-front .shape-2 {
        width: 40px;
        height: 40px;
        bottom: 20%;
        left: 5%;
    }
    
    .layer-front .shape-3 {
        display: none;
    }
    
    .layer-front .shape-4 {
        width: 30px;
        height: 30px;
        top: 60%;
        right: 15%;
    }
    
    .layer-front .shape-5,
    .layer-front .shape-6 {
        display: none;
    }

    .hero-meta {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-left: 0;
        margin-top: 0;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-description h2 {
        font-size: 11px;
        letter-spacing: 0.2em;
        margin-bottom: 16px;
    }
    
    .hero-description p {
        font-size: 15px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.8);
    }

    .hero-stats {
        gap: 40px;
        justify-content: flex-start;
    }
    
    .stat-number {
        font-size: 36px;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 10px;
        letter-spacing: 0.15em;
    }
    
    .scroll-indicator {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    nav {
        padding: 8px 16px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-links {
        padding: 6px;
        gap: 0;
    }

    .nav-links a {
        font-size: 9px;
        padding: 6px 2px;
    }

    .nav-cta {
        padding: 10px 20px;
        font-size: 10px;
    }

    .hero {
        padding: 80px 16px 60px;
    }

    .section {
        padding: 60px 16px;
    }
}

/* Animation classes for JavaScript */
.card, .journal-card, .feature-split {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.card.visible, .journal-card.visible, .feature-split.visible {
    opacity: 1;
    transform: translateY(0);
}

