/* ==========================================================================
   CSS Variables & Tokens (Premium Dark Mode)
   ========================================================================== */
   :root {
    /* Colors */
    --bg-primary: #0a0c10;
    --bg-secondary: #12141a;
    --text-primary: #f5f5f7;
    --text-secondary: #8b92a5;
    
    --accent-primary: #00ff88;
    --accent-secondary: #00bcd4;
    --gradient-1: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-blur: blur(12px);
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Metrics */
    --border-radius: 16px;
    --container-width: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Background Blobs (Ambient lighting)
   ========================================================================== */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15;
    border-radius: 50%;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
}

.blob-2 {
    top: 40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--accent-secondary);
}

.blob-3 {
    bottom: -10%;
    left: 20%;
    width: 700px;
    height: 700px;
    background: #6200ea;
}

/* ==========================================================================
   Utility Classes & Components
   ========================================================================== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

.card {
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--accent-primary);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn.small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    margin: 10px auto 0;
    border-radius: 2px;
}

main section {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 6rem 1rem 2rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding-top: 100px;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.greeting {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.name {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.summary {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 2rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image-wrapper {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
    align-content: flex-start;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-primary);
}

/* ==========================================================================
   Experience Section
   ========================================================================== */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -42px;
    top: 30px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
}

.timeline-date {
    color: var(--accent-secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-secondary);
}

/* ==========================================================================
   Apps Showcase Section
   ========================================================================== */
.apps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.featured-app {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow: hidden;
    padding: 0;
}

.app-visual {
    width: 100%;
    background: #111;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.app-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.app-details {
    padding: 2.5rem;
}

.app-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.app-timeline {
    color: var(--accent-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.app-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.app-tech {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
}

.app-tech span {
    font-size: 0.9rem;
    color: var(--text-primary);
    opacity: 0.8;
}

.app-tech span::before {
    content: '→';
    color: var(--accent-primary);
    margin-right: 5px;
}

.app-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    margin-top: 2rem;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding: 3rem 1rem 2rem;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-info h3 {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: var(--text-secondary);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    max-width: var(--container-width);
    margin: 0 auto;
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .apps-container {
        grid-template-columns: 1fr;
    }

    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 120px;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }

    .name {
        font-size: 3.5rem;
    }
}

/* ==========================================================================
   Ultra-Modern App Landing Page Styles (Wavly)
   ========================================================================== */
.landing-page-body {
    font-family: 'Plus Jakarta Sans', var(--font-main);
    background-color: #06080c;
    color: var(--text-primary);
}

/* Header & Brand */
.landing-header .navbar-landing {
    padding: 1.2rem 0;
    background: rgba(10, 12, 16, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.app-icon-mini {
    width: 38px;
    height: 38px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
}

.brand-text .dot {
    color: var(--accent-primary);
}

.landing-nav-links a {
    font-size: 0.95rem;
    color: #a0a6b8;
    transition: color 0.25s ease;
}

.landing-nav-links a:hover {
    color: #fff;
}

.nav-back-link {
    color: var(--accent-primary) !important;
    font-weight: 600;
}

.btn-nav-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 24px;
}

/* Landing Hero Section */
.landing-hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 4rem;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-glow-effect {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, rgba(0, 188, 212, 0.1) 40%, rgba(0, 0, 0, 0) 70%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.landing-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.88rem;
    font-weight: 500;
    color: #d1d5db;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.pill-sparkle {
    font-size: 1rem;
}

.pill-divider {
    color: rgba(255, 255, 255, 0.2);
}

.pill-highlight {
    color: var(--accent-primary);
    font-weight: 600;
}

.landing-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.landing-lead {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 720px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.landing-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

.btn-hero-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 35px;
    background: var(--gradient-1);
    color: #000;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.45);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-trust-metrics {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 4rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.metric-lbl {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
}

.metric-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.08);
}

/* Phone Mockup Frame */
.landing-hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup-wrapper {
    position: relative;
    display: inline-block;
}

.phone-frame-container {
    width: 320px;
    height: 640px;
    border-radius: 45px;
    background: #000;
    border: 10px solid #1e293b;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 255, 136, 0.15);
    position: relative;
    overflow: hidden;
}

.phone-speaker {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: #334155;
    border-radius: 10px;
    z-index: 10;
}

.phone-camera {
    position: absolute;
    top: 10px;
    right: 90px;
    width: 10px;
    height: 10px;
    background: #1e293b;
    border-radius: 50%;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0b0f17;
    overflow: hidden;
}

.phone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.phone-glass-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    animation: float 4s ease-in-out infinite;
    z-index: 15;
}

.badge-top-left {
    top: 60px;
    left: -140px;
    animation-delay: 0s;
}

.badge-bottom-right {
    bottom: 80px;
    right: -140px;
    animation-delay: 2s;
}

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

.badge-icon-wrap {
    font-size: 1.5rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.badge-text strong {
    font-size: 0.95rem;
    color: #fff;
}

.badge-text span {
    font-size: 0.8rem;
    color: var(--accent-primary);
}

/* Ticker Ribbon */
.ticker-ribbon {
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 188, 212, 0.08) 100%);
    border-y: 1px solid rgba(0, 255, 136, 0.15);
    padding: 18px 0;
    overflow: hidden;
    margin: 3rem 0;
}

.ticker-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 2px;
    color: var(--accent-primary);
    white-space: nowrap;
}

/* Bento Grid Features */
.bento-section {
    max-width: var(--container-width);
    margin: 4rem auto;
    padding: 0 1rem;
}

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

.section-badge {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.section-heading {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 0.8rem;
}

.section-subheading {
    font-size: 1.15rem;
    color: #94a3b8;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.bento-card {
    border-radius: 24px;
    padding: 2.2rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bento-card.card-large {
    grid-column: span 2;
}

.bento-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.bento-icon-glow {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.bento-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 12px;
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-primary);
}

.bento-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}

.bento-card p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
}

.bento-preview-graphic {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sound-wave-bars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
}

.sound-wave-bars span {
    width: 6px;
    background: var(--gradient-1);
    border-radius: 10px;
    animation: wavePulse 1.5s ease-in-out infinite alternate;
}

@keyframes wavePulse {
    0% { transform: scaleY(0.4); }
    100% { transform: scaleY(1); }
}

.cloud-sync-demo {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
}

.sync-pill {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.sync-status {
    color: var(--accent-primary);
    font-weight: 700;
    margin-left: 10px;
}

/* Side-by-Side Horizontal Screenshots Track & Controls */
.screenshots-section {
    max-width: var(--container-width);
    margin: 5rem auto;
    padding: 0 1rem;
}

.section-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.slider-controls {
    display: flex;
    gap: 12px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #000;
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.horizontal-phone-track-wrapper {
    position: relative;
    width: 100%;
}

.horizontal-phone-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1.5rem 0.5rem 2.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-primary) rgba(255, 255, 255, 0.05);
}

.horizontal-phone-track::-webkit-scrollbar {
    height: 6px;
}

.horizontal-phone-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.horizontal-phone-track::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 10px;
}

.phone-card-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mini-phone-frame {
    width: 250px;
    height: 510px;
    border-radius: 40px;
    background: #000;
    border: 7px solid #1e293b;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(0, 255, 136, 0.12);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-card-item:hover .mini-phone-frame {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--accent-primary);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 255, 136, 0.35);
}

.mini-speaker {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #334155;
    border-radius: 10px;
    z-index: 10;
}

.mini-camera {
    position: absolute;
    top: 8px;
    right: 70px;
    width: 8px;
    height: 8px;
    background: #1e293b;
    border-radius: 50%;
    z-index: 10;
}

.mini-screen {
    width: 100%;
    height: 100%;
    background: #0b0f17;
    overflow: hidden;
}

.mini-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mini-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
}

.zoom-hover-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    background: rgba(0, 255, 136, 0.9);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.phone-card-item:hover .zoom-hover-badge {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.phone-item-caption {
    text-align: center;
    margin-top: 1.2rem;
}

.phone-item-caption h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.phone-item-caption span {
    font-size: 0.85rem;
    color: var(--accent-primary);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 8, 14, 0.92);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 85vw;
    max-height: 75vh;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 255, 136, 0.2);
}

.lightbox-caption {
    margin-top: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.lightbox-close:hover {
    background: var(--accent-primary);
    color: #000;
}

/* About Creator */
.about-creator-section {
    max-width: var(--container-width);
    margin: 5rem auto;
    padding: 0 1rem;
}

.about-card-banner {
    border-radius: 28px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content-left h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.about-content-left p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.creator-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.creator-tags .tag {
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

.about-actions-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn.full-width {
    width: 100%;
    justify-content: center;
}

/* Final CTA */
.final-cta-section {
    max-width: var(--container-width);
    margin: 5rem auto 3rem;
    padding: 0 1rem;
}

.final-cta-box {
    border-radius: 32px;
    padding: 4.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 188, 212, 0.08) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.final-cta-box h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.final-cta-box p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

.large-cta {
    padding: 18px 40px;
    font-size: 1.15rem;
}

/* Footer */
.landing-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 1rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand-col p {
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 1rem;
    max-width: 380px;
}

.footer-links-col h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.2rem;
}

.footer-links-col ul li {
    margin-bottom: 0.6rem;
}

.footer-links-col a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links-col a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.card-large {
        grid-column: span 1;
    }

    .phone-devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-card-banner {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .floating-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .landing-title {
        font-size: 2.8rem;
    }

    .landing-cta-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-main, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-trust-metrics {
        flex-direction: column;
        gap: 1rem;
    }

    .metric-divider {
        width: 100%;
        height: 1px;
    }

    .phone-devices-grid {
        grid-template-columns: 1fr;
    }

    .phone-frame-container {
        width: 280px;
        height: 560px;
    }
}


