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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Inter', sans-serif;
    background: #000000;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

.fade-in.delay-1 { animation-delay: 0.1s; }
.fade-in.delay-2 { animation-delay: 0.2s; }
.fade-in.delay-3 { animation-delay: 0.3s; }
.fade-in.delay-4 { animation-delay: 0.4s; }

.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade.delay-1 { transition-delay: 0.1s; }
.scroll-fade.delay-2 { transition-delay: 0.2s; }
.scroll-fade.delay-3 { transition-delay: 0.3s; }

/* Gradient Text - New Brand Colors */
.gradient-text {
    background: linear-gradient(90deg, #22D3EE 0%, #6366F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Logo */
.logo {
    font-size: 1.875rem;
    font-weight: bold;
    background: linear-gradient(90deg, #22D3EE 0%, #6366F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

/* Navbar */
.navbar {
    position: relative;
    z-index: 20;
    padding: 1.5rem;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gradient-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(34, 211, 238, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                #000000;
}

.blob-container {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(128px);
    animation: blob 7s infinite;
}

.blob-1 {
    background: rgba(34, 211, 238, 0.45);
    top: 25%;
    left: 25%;
}

.blob-2 {
    background: rgba(99, 102, 241, 0.30);
    top: 33%;
    right: 25%;
    animation-delay: 2s;
}

.blob-3 {
    background: rgba(34, 211, 238, 0.35);
    bottom: 25%;
    left: 33%;
    animation-delay: 4s;
}

.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    padding-bottom: 5rem;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid #262626;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.verified-badge svg {
    color: #22D3EE;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #8E8E8E;
    max-width: 48rem;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #22D3EE 0%, #6366F1 100%);
    border: none;
    border-radius: 1rem;
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.5);
    transform: translateY(-2px);
}

.btn-primary svg {
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid #262626;
    border-radius: 1rem;
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(34, 211, 238, 0.3);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    color: #8E8E8E;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item svg {
    color: #22D3EE;
}

/* Download Buttons */
.download-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section {
    padding: 8rem 1.5rem;
    position: relative;
    background: #000000;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.25rem;
    color: #8E8E8E;
    max-width: 48rem;
    margin: 0 auto;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.badge-blue {
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: #22D3EE;
}

/* Card Component */
.card {
    background: #1C1C1C;
    backdrop-filter: blur(24px);
    border: 1px solid #262626;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(34, 211, 238, 0.1);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #1C1C1C;
    backdrop-filter: blur(24px);
    border: 1px solid #262626;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

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

.icon-blue {
    background: linear-gradient(135deg, #22D3EE, #6366F1);
}

.icon-purple {
    background: linear-gradient(135deg, #6366F1, #22D3EE);
}

.icon-green {
    background: linear-gradient(135deg, #22D3EE, #6366F1);
}

/* Footer */
.footer {
    background: #121212;
    border-top: 1px solid #262626;
    padding: 5rem 1.5rem 3rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.footer-brand p {
    color: #8E8E8E;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #1C1C1C;
    border: 1px solid #262626;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(34, 211, 238, 0.1);
    border-color: #22D3EE;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #8E8E8E;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #22D3EE;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #262626;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #8E8E8E;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: #8E8E8E;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #22D3EE;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Awesome Logo Styles */
.nav-container-left {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-container-with-badge {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verified-badge-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid #262626;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #FFFFFF;
}

.verified-badge-nav svg {
    color: #22D3EE;
}

@media (max-width: 640px) {
    .verified-badge-nav {
        display: none;
    }
}

/* Horizontal Logo Styles */
.logo-link-horizontal {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link-horizontal:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.logo-horizontal {
    height: 4.5rem;
    filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.3));
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-link-horizontal:hover .logo-horizontal {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(34, 211, 238, 0.5));
}

@media (max-width: 768px) {
    .logo-horizontal {
        height: 3rem;
    }
}

/* Download Buttons - Side by Side */
.download-buttons-container {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #1C1C1C;
    backdrop-filter: blur(12px);
    border: 1px solid #262626;
    border-radius: 1rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.download-button:hover {
    background: rgba(34, 211, 238, 0.1);
    border-color: #22D3EE;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
}

.download-label {
    font-size: 0.75rem;
    color: #8E8E8E;
}

.download-store {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Social Feed Grid Layout */
.social-feed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 1024px) {
    .social-feed-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.social-posts {
    display: flex;
    flex-direction: column;
}

.social-sidebar {
    display: flex;
    flex-direction: column;
}

/* Community Cards */
.community-card {
    position: relative;
    background: #1C1C1C;
    backdrop-filter: blur(24px);
    border: 1px solid #262626;
    border-radius: 1.5rem;
    padding: 2rem;
    height: 16rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.community-card:hover {
    border-color: rgba(34, 211, 238, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(34, 211, 238, 0.15);
}

.community-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.community-card:hover .community-icon {
    transform: scale(1.1);
}

.community-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 0;
    transition: transform 0.3s ease;
}

.community-card:hover h3 {
    transform: translateY(-4px);
}

/* Networking Grid */
.networking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 5rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .networking-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.networking-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 31.25rem;
}

.networking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.networking-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.5), transparent);
}

.networking-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(24px);
    border: 1px solid #262626;
    border-radius: 1rem;
    padding: 1.5rem;
}

.networking-features {
    display: flex;
    flex-direction: column;
}

/* Mobile Preview */
.mobile-preview-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 5rem;
}

@media (min-width: 1024px) {
    .mobile-preview-container {
        flex-direction: row;
    }
}

.phone-mockup {
    position: relative;
    width: 18.75rem;
    height: 37.5rem;
    background: #121212;
    border-radius: 3rem;
    border: 8px solid #262626;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.phone-notch {
    height: 2rem;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-notch::before {
    content: '';
    width: 6rem;
    height: 1.5rem;
    background: #121212;
    border-radius: 9999px;
}

.phone-content {
    height: calc(100% - 6rem);
    background: #000000;
    padding: 1.5rem;
    overflow-y: auto;
}

.phone-navbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(24px);
    border-top: 1px solid #262626;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.5rem;
}

@media (max-width: 640px) {
    .phone-mockup {
        width: 15rem;
        height: 30rem;
    }
}

/* Additional adjustments for section backgrounds */
.section[style*="background: linear-gradient"] {
    background: #000000 !important;
}

/* Mobile Screens Grid */
.mobile-screens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 1rem;
}

.mobile-screen-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.screen-mockup {
    width: 100%;
    max-width: 300px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(34, 211, 238, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screen-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(34, 211, 238, 0.3);
}

.screen-image {
    width: 100%;
    height: auto;
    display: block;
}

.screen-info {
    text-align: center;
    max-width: 320px;
}

.screen-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    background: linear-gradient(90deg, #22D3EE 0%, #6366F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.screen-description {
    font-size: 1rem;
    color: #8E8E8E;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mobile-screens-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .screen-mockup {
        max-width: 280px;
    }
}

/* Mobile Screens Grid */
.mobile-screens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 1rem;
}

.mobile-screen-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.screen-mockup {
    width: 100%;
    max-width: 300px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(34, 211, 238, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screen-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(34, 211, 238, 0.3);
}

.screen-image {
    width: 100%;
    height: auto;
    display: block;
}

.screen-info {
    text-align: center;
    max-width: 320px;
}

.screen-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    background: linear-gradient(90deg, #22D3EE 0%, #6366F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.screen-description {
    font-size: 1rem;
    color: #8E8E8E;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mobile-screens-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .screen-mockup {
        max-width: 280px;
    }
}

/* Mobile Screens Grid */
.mobile-screens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 1rem;
}

.mobile-screen-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.screen-mockup {
    width: 100%;
    max-width: 300px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(34, 211, 238, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screen-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(34, 211, 238, 0.3);
}

.screen-image {
    width: 100%;
    height: auto;
    display: block;
}

.screen-info {
    text-align: center;
    max-width: 320px;
}

.screen-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    background: linear-gradient(90deg, #22D3EE 0%, #6366F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.screen-description {
    font-size: 1rem;
    color: #8E8E8E;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mobile-screens-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .screen-mockup {
        max-width: 280px;
    }
}

/* Mobile Screens Grid */
.mobile-screens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 1rem;
}

.mobile-screen-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.screen-mockup {
    width: 100%;
    max-width: 300px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(34, 211, 238, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screen-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(34, 211, 238, 0.3);
}

.screen-image {
    width: 100%;
    height: auto;
    display: block;
}

.screen-info {
    text-align: center;
    max-width: 320px;
}

.screen-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    background: linear-gradient(90deg, #22D3EE 0%, #6366F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.screen-description {
    font-size: 1rem;
    color: #8E8E8E;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mobile-screens-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .screen-mockup {
        max-width: 280px;
    }
}
