/* --- Variables & Reset --- */
:root {
    --bg-dark: #050505;
    --bg-card: rgba(10, 15, 25, 0.6);
    --border-color: rgba(0, 120, 232, 0.15);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    
    /* Single Color Theme: #0078E8 */
    --primary-blue: #0078E8;
    --primary-gradient: linear-gradient(135deg, #0078E8 0%, #3b82f6 100%);
    --accent-glow: rgba(0, 120, 232, 0.5);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px; /* height of your fixed navbar */
}


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

body {
    background: radial-gradient(circle at 50% 0%, #001e38 0%, #020617 50%, #000000 100%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    font-size: 18px;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { font-size: 4.8rem; line-height: 1.1; margin-bottom: 1.8rem; }
h2 { font-size: 3.2rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.8rem; margin-bottom: 0.8rem; }
p { color: var(--text-muted); font-size: 1.2rem; }

.text-gradient {
    background: linear-gradient(90deg, #0127ff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.section-tag {
    display: block;
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* --- Layout Utils --- */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

/* --- BACKGROUND ANIMATION --- */
@keyframes breathe-glow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    50% { transform: scale(1.2) translate(-20px, 20px); opacity: 0.6; }
    100% { transform: scale(1) translate(0, 0); opacity: 0.3; }
}

.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    animation: breathe-glow 8s infinite ease-in-out alternate;
}

.glow-top { 
    width: 700px; height: 700px;
    top: -250px; left: 50%; 
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(0, 120, 232, 0.5) 0%, transparent 70%);
}

.glow-bottom { 
    width: 800px; height: 800px;
    bottom: -350px; right: -150px; 
    background: radial-gradient(circle, rgba(0, 120, 232, 0.3) 0%, transparent 70%);
    animation-delay: 2s;
}

.glow-mid {
    width: 600px; height: 600px;
    top: 40%; left: -250px;
    background: radial-gradient(circle, rgba(0, 120, 232, 0.25) 0%, transparent 70%);
    animation-delay: 4s;
}

/* --- Navigation --- */
.navbar {
    padding: 25px 0;
    position: fixed;
    top: 0;
    width: 100%;
    /* background: rgba(5, 5, 5, 0.7); */
    backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

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

/* Logo Image Styling */
.logo-img {
    width: 160px; /* Adjust size as needed */
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.logo:hover .logo-img { transform: scale(1.05); }

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

.nav-links a { 
    font-size: 1rem; 
    color: var(--text-muted); 
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}
.nav-links a:hover { 
    color: #fff; 
    text-shadow: 0 0 10px rgba(0, 120, 232, 0.5); 
    transform: scale(1.1);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-sm { 
    padding: 10px 20px; 
    font-size: 0.9rem; 
    border: 1px solid var(--border-color); 
    background: transparent; 
    color: #fff;
}
.btn-sm:hover { 
    background: #fff; 
    color: #000; 
    box-shadow: 0 0 15px rgba(255,255,255,0.4); 
    transform: scale(1.05);
}

.btn-primary {
    background: var(--primary-blue);
    color: #fff;
}
.btn-primary:hover {
    background: #0060ba;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 120, 232, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: #fff;
    margin-left: 12px;
}
.btn-secondary:hover { 
    border-color: var(--primary-blue); 
    background: rgba(0, 120, 232, 0.1); 
    transform: scale(1.05);
}

/* --- Hero --- */
.hero {
    padding: 220px 0 120px 0;
    text-align: center;
    position: relative;
    /* Added darker gradient overlay for hero section */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 20%, #020617 80%, #000000 100%);
}

/* Updated Pill Label Style - Nested Pill, No Hover */
.pill-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 6px 6px 18px; /* Left padding for text, others smaller for nested pill */
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
    margin-bottom: 2rem;
    color: #fff;
    backdrop-filter: blur(5px);
    font-weight: 500;
}

/* Nested Pill Style */
.pill-label .highlight {
    background: rgba(30, 58, 138, 0.5); /* Dark Blue background */
    color: #60a5fa; /* Cyan text */
    font-weight: 600;
    margin-left: 0;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.hero-sub { max-width: 750px; margin: 0 auto 3rem auto; font-size: 1.3rem; }

/* Stats Bar */
.stats-bar {
    display: inline-flex;
    align-items: center;
    gap: 50px;
    margin-top: 5rem;
    padding: 25px 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}
.stats-bar:hover { transform: scale(1.02); }

.stat-item { text-align: center; }
.stat-val { display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--primary-blue); line-height: 1.2; }
.stat-label { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }

/* --- Bento Grid Layout --- */
.features, .testimonials { padding: 120px 0; }

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

/* Cards: Lift Up (-10px) + Scale */
.bento-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 28px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-10px) scale(1.01); 
    border-color: rgba(0, 120, 232, 0.5);
    box-shadow: 0 15px 50px rgba(0, 120, 232, 0.15);
}

/* Icon Box for Features */
.icon-box {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2rem;
    background: rgba(0, 120, 232, 0.15); 
    color: #60a5fa;
    border: 1px solid rgba(0, 120, 232, 0.2);
    transition: transform 0.3s ease;
}

.icon-box svg { width: 32px; height: 32px; }
.bento-card:hover .icon-box { transform: scale(1.1) rotate(5deg); }

.blue-icon, .cyan-icon, .purple-icon {
    background: rgba(0, 120, 232, 0.15); 
    color: #60a5fa;
}

/* --- Framework (The Secret) --- */
.framework-section { padding: 100px 0; text-align: center; }

.framework-visual {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.glowing-orb {
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 120, 232, 0.2) 0%, transparent 70%);
    border: 1px solid rgba(0, 120, 232, 0.3);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 80px rgba(0, 120, 232, 0.3);
    margin-bottom: 2.5rem;
    animation: pulseRing 3s infinite ease-in-out;
    transition: transform 0.3s ease;
}
.glowing-orb:hover { transform: scale(1.1); }

@keyframes pulseRing {
    0% { box-shadow: 0 0 40px rgba(0, 120, 232, 0.2); transform: scale(1); }
    50% { box-shadow: 0 0 120px rgba(0, 120, 232, 0.6); transform: scale(1.05); }
    100% { box-shadow: 0 0 40px rgba(0, 120, 232, 0.2); transform: scale(1); }
}

.big-number { font-size: 7.5rem; font-weight: 700; color: var(--primary-blue); font-family: var(--font-heading); }

/* --- NUMBERS (1-8) HOVER EFFECT --- */
.steps-indicator {
    display: flex; gap: 20px; margin-bottom: 3rem; flex-wrap: wrap; justify-content: center;
}

.steps-indicator span {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: rgba(0, 120, 232, 0.05);
    border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; 
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.steps-indicator span:hover {
    border-color: #0078E8;
    background: linear-gradient(135deg, #001e38 0%, #0078E8 100%);
    color: #fff;
    box-shadow: 0 0 25px rgba(0, 120, 232, 0.4);
    transform: scale(1.2);
}

/* --- LOCK BUTTON HOVER EFFECT --- */
.btn-lock { 
    background: rgba(255,255,255,0.05); 
    border: 1px solid var(--border-color); 
    color: #fff; 
    border-radius: 50px; 
    margin-bottom: 15px;
    padding: 12px 24px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-lock:hover { 
    background: linear-gradient(90deg, #001e38 0%, #0078E8 100%);
    border-color: #0078E8; 
    color: #fff;
    box-shadow: 0 0 25px rgba(0, 120, 232, 0.3);
    transform: scale(1.05);
}

.tiny-text { font-size: 0.9rem; opacity: 0.5; max-width: 450px; margin: 0 auto; }

/* --- Testimonials --- */
.stars { 
    color: #FFD700;
    margin-bottom: 1.5rem; 
    letter-spacing: 2px; 
    font-size: 1rem; 
    display: inline-flex;
}
.half-star {
    position: relative;
    background: linear-gradient(to right, #FFD700 50%, rgba(255,255,255,0.2) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.quote { font-style: italic; margin-bottom: 2.5rem; font-size: 1.15rem; }

.user-info { display: flex; align-items: center; gap: 20px; }
.avatar {
    width: 55px; height: 55px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; font-size: 1rem; color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #0078E8, #004ba0);
    transition: transform 0.3s ease;
}
.bento-card:hover .avatar { transform: scale(1.1) rotate(-5deg); }

.pm, .rk, .an { background: linear-gradient(135deg, #0078E8, #004ba0); }
.user-role { font-size: 0.9rem; color: var(--text-muted); display: block; margin-top: 4px; }

/* --- Footer CTA --- */
.cta-section { padding: 120px 0; text-align: center; }
.cta-box {
    background: linear-gradient(180deg, rgba(0, 120, 232, 0.08) 0%, rgba(0,0,0,0) 100%);
    backdrop-filter: blur(10px);
    padding: 5rem 2.5rem;
    border-radius: 40px;
    border: 1px solid rgba(0, 120, 232, 0.2);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}
.cta-box:hover { transform: translateY(-5px); }

.email-signup {
    margin-top: 3rem;
    display: flex; gap: 15px; justify-content: center;
}
.email-signup input {
    padding: 16px 28px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: rgba(0,0,0,0.3);
    color: #fff;
    width: 360px;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: 0.3s;
}
.email-signup input:focus { 
    border-color: var(--primary-blue); 
    background: rgba(0, 120, 232, 0.1); 
    transform: scale(1.02);
}
.email-signup .btn-primary { border-radius: 50px; padding: 16px 36px; font-size: 1.1rem; }

/* --- Updated Social Icons Styling (Circles) --- */
.social-icons {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Thin subtle border */
    color: #fff;
    transition: all 0.3s ease;
    background: transparent;
}

.social-icons svg {
    width: 24px;
    height: 24px;
}

/* Hover: Fill with blue, glow, and scale */
.icon-circle:hover {
    transform: scale(1.1);
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 120, 232, 0.5);
}

.mt-4 { margin-top: 2rem; }

/* --- Footer --- */
footer {
    border-top: 1px solid var(--border-color);
    padding: 50px 0;
    font-size: 1rem;
    color: var(--text-muted);
    background: rgba(0,0,0,0.6);
}
.footer-content {
    display: flex; justify-content: space-between; align-items: center;
}
.footer-center { text-align: center; }
.made-with { font-size: 0.9rem; opacity: 0.5; margin-top: 8px; }
.footer-right { display: flex; gap: 25px; }
.footer-right a { display: inline-block; transition: transform 0.2s; }
.footer-right a:hover { color: #fff; transform: scale(1.05); }

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* --- MEDIA QUERIES --- */
@media (max-width: 1200px) {
    .container { padding: 0 30px; }
    h1 { font-size: 4rem; }
    h2 { font-size: 2.8rem; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .btn-nav { display: none; }
    .navbar { padding: 20px 0; }
    
    h1 { font-size: 2.8rem; margin-bottom: 1rem; }
    h2 { font-size: 2.2rem; }
    .hero-sub { font-size: 1.1rem; }
    
    .bento-grid { grid-template-columns: 1fr; }
    
    .hero { padding: 150px 0 80px 0; }
    .hero-actions { display: flex; flex-direction: column; gap: 20px; }
    .btn-secondary { margin-left: 0; }

    .pill-label {
        font-size: 11px;
    }
    
    .stats-bar { 
        flex-direction: row; 
        width: 100%; 
        gap: 20px; 
        padding: 30px;
    }
    .stat-val {
        font-size: 23px;
    }

    .stat-label { font-size: 0.8rem; }
    .stat-divider { width: 60px; height: 1px; }
    
    .email-signup { flex-direction: column; align-items: center; }
    .email-signup input { width: 100%; margin-bottom: 20px; }
    .email-signup .btn-primary { width: 100%; }

    .footer-content { flex-direction: column; gap: 25px; text-align: center; }
    
    .glow-top { width: 400px; height: 400px; top: -150px; opacity: 0.5; }
    .glow-bottom { opacity: 0.5; }
}