:root { --header-h: 72px; }         /* adjust to your actual header height */
html {
  scroll-padding-top: 80px; /* Adjust to your header height */
}

/* offsets hash jumps, incl. on refresh */
body { padding-top: var(--header-h); }         /* keeps content below fixed header */

/* optional but nice: make each section respect the offset too */
section { scroll-margin-top: var(--header-h); }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0b;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.footer-bottom {
    background-color: #0a0a0b; /* Match your footer */
    color: #a1a1aa; /* White text */
    font-size: 0.85rem;
    padding: 12px 20px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom.disclaimer {
    color: #a1a1aa; /* White text */
    font-weight: normal; /* Not bold */
    text-align: left; /* Align to left */
    margin-top: 10px; /* Space above disclaimer */
    font-size: 0.8rem;
    opacity: 0.85; /* Slight fade for softer look */
}




body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(255, 154, 158, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, button right */
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

/* About sections styling */
        .about-section {
            padding: 5rem 0;
            background: rgba(255, 255, 255, 0.95);
            margin: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #8b5cf6, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        .about-text p {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .mission-points {
            list-style: none;
            margin-top: 2rem;
        }

        .mission-points li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: #4a5568;
            font-size: 1.1rem;
        }

        .mission-points li:before {
            content: "✓";
            color: #10b981;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 1rem;
            background: rgba(16, 185, 129, 0.1);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-visual {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .about-visual:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="90" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .about-visual > * {
            position: relative;
            z-index: 2;
        }

        .impact-number {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .impact-text {
            font-size: 1.2rem;
            opacity: 0.9;
        }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-left: auto; /* push nav-links to the right */
  margin-right: 2rem; /* space before button */
}

.nav-links a {
  color: #a1a1aa;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}


.logo {
    text-decoration: none;
    font-size: 1.4rem; /* smaller */
    font-weight: 600;
    color: #ffffff; /* plain white text */
}

header .logo {
  color: #fff !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;

  /* kill any gradient text tricks */
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #fff !important;
}

.app-card .step-badge {
    margin-bottom: 1.5rem; /* Adjust as needed */
}

header .cta-button {
    
    background: #ffffff;
    color: #0a0a0b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

header .cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}


.nav-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 5%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #a1a1aa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.25rem;
    color: #a1a1aa;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(139, 92, 246, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Section Styles */
.apps-section, .stats-section, .testimonials-section {
    padding: 6rem 5%;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #a1a1aa;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* App Portfolio Cards */
.app-portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.app-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.step-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent; /* no fill */
    border: 1px solid #fff; /* white border */
    color: #ffffff;
    padding: 0.15rem 0.5rem; /* smaller padding */
    border-radius: 12px;
    font-size: 0.65rem; /* smaller text */
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 0.5rem; /* extra bottom gap */
}


.app-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.app-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff; 
    margin-bottom: 0.75rem;
    line-height: 1.3;
}



.app-description {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.app-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.download-count {
    color: #8b5cf6;
    font-weight: 600;
    font-size: 0.9rem;
}

.rating {
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.9rem;
}

.app-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Stats Section */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #a1a1aa;
    font-weight: 600;
}

/* Testimonials Section */
.testimonial-header {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.testimonial-badge {
    background: #ffffff;
    color: #0a0a0b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    animation: testimonial-float 8s ease-in-out infinite;
}

.testimonial-card:nth-child(2n) {
    animation-delay: -2s;
}

.testimonial-card:nth-child(3n) {
    animation-delay: -4s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
}

@keyframes testimonial-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #a1a1aa;
    line-height: 1.6;
    font-style: italic;
    font-size: 0.95rem;
}

.testimonial-author {
    display: block;
    margin-left: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 0;
}

.testimonial-author,
.author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.author-info h4 {
    margin-left: 0;
    padding-left: 0;
    color: #ffffff;
    font-weight: 300;
}

.author-info span {
    color: #71717a;
    font-size: 0.85rem;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.01);
    padding: 3rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}
.app-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.app-tags {
    display: flex;
    gap: 0.5rem;
}

.download-icon {
    position: static;
    margin-left: 1rem;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s;
    text-decoration: none;
}
.footer-section p,
.footer-section a {
    color: #71717a;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #8b5cf6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    text-align: center;
    color: #52525b;
}

/* Floating particles animation */
.particle {
    position: absolute;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: particle-float 20s linear infinite;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    nav {
        padding: 1rem 5%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: center;
    }
}