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

:root {
    --primary-blue: #3b82f6;
    --primary-dark: #2563eb;
    --secondary-purple: #8b5cf6;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --bg-card: #ffffff;
    --bg-page: #f8fafc;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --border-light: #cbd5e1;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Dark theme */
[data-theme="dark"] {
    --primary-blue: #60a5fa;
    --primary-dark: #3b82f6;
    --secondary-purple: #a78bfa;
    --bg-light: #1e293b;
    --bg-white: #0f172a;
    --bg-card: #1e293b;
    --bg-page: #0f172a;
    --text-dark: #f1f5f9;
    --text-medium: #94a3b8;
    --text-light: #64748b;
    --border-light: #334155;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-page);
    min-height: 100vh;
    color: var(--text-dark);
    line-height: 1.6;
    padding: 80px 20px 20px 20px;
    display: flex;
    flex-direction: column;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    height: 60px;
}

.navbar-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    line-height: 1;
}

.navbar-bit { color: #3b82f6; }
.navbar-bot { color: #8b5cf6; }
.navbar-boo { color: #ec4899; }

.navbar-solutions {
    color: #94a3b8;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-left: 8px;
    text-transform: uppercase;
    font-stretch: condensed;
    line-height: 1;
    margin-bottom: 2px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
    background: var(--bg-light);
}

.nav-btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.nav-btn-login {
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    background: transparent;
}

.nav-btn-login:hover {
    background: var(--primary-blue);
    color: white;
}

.nav-btn-privacy {
    color: #10b981;
    border: 1px solid #10b981;
    background: rgba(16, 185, 129, 0.1);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.nav-btn-privacy:hover {
    background: #10b981;
    color: white;
}

/* Theme Toggle Button */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--bg-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-medium);
}

.theme-toggle:hover {
    background: var(--bg-light);
    transform: scale(1.05);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}

.nav-btn-signup {
    color: white;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border: none;
}

.nav-btn-signup:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
}

header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
}

.brand-container {
    margin-bottom: 30px;
}

.brand-name {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.brand-bit {
    color: #3b82f6;
}

.brand-bot {
    color: #8b5cf6;
}

.brand-boo {
    color: #ec4899;
    position: relative;
}

.brand-solutions {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 5px;
}

.brand-tagline {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 15px;
    letter-spacing: 1px;
}

.privacy-manifesto {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 30px auto;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.privacy-manifesto::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.manifesto-content {
    position: relative;
    z-index: 1;
}

.manifesto-lead {
    color: #f8fafc;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.manifesto-lead strong {
    color: #60a5fa;
}

.manifesto-desc {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.manifesto-desc strong {
    color: #f472b6;
}

.manifesto-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.point {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.point:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.manifesto-close {
    color: #94a3b8;
    font-size: 1.1rem;
    font-style: italic;
}

.boo-effect {
    color: #ec4899;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-block;
    animation: booBounce 2s ease-in-out infinite;
}

@keyframes booBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

header h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-medium);
    font-weight: 400;
}

.tools-section {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 600;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 10px;
    max-width: 1600px;
    margin: 0 auto;
}

.tool-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-light);
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.tool-card.coming-soon {
    opacity: 0.5;
    cursor: default;
    background: var(--bg-light);
}

.tool-card.coming-soon:hover {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
    border-color: var(--border-light);
}

.tool-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.tool-icon svg {
    width: 56px;
    height: 56px;
    color: #4a90e2;
}

.tool-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.tool-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
}

footer {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-top: auto;
}

footer p {
    margin: 0;
}

.privacy-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.privacy-subtext {
    color: #64748b;
    font-size: 1rem;
    margin-top: 12px;
    font-style: italic;
}

.privacy-footer {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #166534;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-weight: 500;
    border: 1px solid #bbf7d0;
}

.about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 60px 40px;
    margin-top: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    text-align: center;
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 20px;
}

.about-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-content h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 25px;
    text-align: center;
}

.tools-description {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tool-desc {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tool-desc:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tool-desc h4 {
    font-size: 1.2rem;
    color: #3b82f6;
    margin-bottom: 10px;
}

.tool-desc p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.group-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
    margin: 40px 0;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
    display: inline-block;
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 20px;
    }
    
    .about-content h2 {
        font-size: 1.6rem;
    }
    
    .tools-description {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
        padding: 0 60px;
    }
    
    .tools-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 35px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .container {
        max-width: 1400px;
        padding: 0 50px;
    }
    
    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    header h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.15rem;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    body {
        padding: 15px;
    }

    header {
        margin-bottom: 35px;
        padding: 30px 15px;
    }

    header h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tool-card {
        padding: 25px 15px;
    }

    .tool-icon {
        font-size: 3rem;
    }

    .tool-name {
        font-size: 1.2rem;
    }

    .tool-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    header h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tool-card {
        padding: 25px 20px;
    }
}

/* Mobile Navbar Optimization */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }

    .navbar {
        height: auto;
        min-height: 60px;
    }

    .navbar-container {
        flex-direction: column;
        padding: 8px 15px;
        gap: 8px;
    }

    .navbar-brand {
        font-size: 1.3rem;
        align-items: flex-end;
    }

    .navbar-solutions {
        font-size: 0.55rem;
        letter-spacing: 2px;
        margin-left: 6px;
        margin-bottom: 3px;
    }

    .navbar-nav {
        gap: 4px;
        width: 100%;
        justify-content: center;
    }

    .nav-link {
        padding: 6px 10px;
        font-size: 0.85rem;
        border-radius: 6px;
    }

    .nav-btn-privacy {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 90px;
    }

    .navbar-container {
        padding: 6px 10px;
        gap: 6px;
    }

    .navbar-brand {
        font-size: 1.2rem;
        align-items: flex-end;
    }

    .navbar-solutions {
        font-size: 0.5rem;
        letter-spacing: 1.5px;
        margin-bottom: 2px;
    }

    .nav-link {
        padding: 5px 8px;
        font-size: 0.8rem;
    }

    .nav-btn-privacy {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    margin: -80px -20px 60px -20px;
    position: relative;
    overflow: hidden;
}

.hero-light {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    filter: grayscale(100%);
}

.float-icon:nth-child(2n) { animation-delay: 1s; }
.float-icon:nth-child(3n) { animation-delay: 2s; }
.float-icon:nth-child(4n) { animation-delay: 3s; }
.float-icon:nth-child(5n) { animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-dark {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
}

.hero-content {
    max-width: 500px;
}

.hero-brand {
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin: 0;
    line-height: 1;
}

.hero-bit { color: #60a5fa; }
.hero-bot { color: #a78bfa; }
.hero-boo { color: #f472b6; }

.hero-solutions {
    font-size: 1.1rem;
    color: #94a3b8;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 500;
}

.hero-tagline {
    font-size: 1.4rem;
    color: #f8fafc;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 15px;
    line-height: 1.5;
}

.hero-description {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-close {
    color: #64748b;
    font-size: 1rem;
    font-style: italic;
    margin: 0;
}

.boo-text {
    color: #f472b6;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    animation: booPulse 2s ease-in-out infinite;
}

@keyframes booPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.tools-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px 0;
}

.tools-header h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.tools-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-light {
        min-height: 200px;
        display: none;
    }
    
    .hero-dark {
        padding: 50px 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-dark {
        padding: 40px 25px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-features {
        gap: 8px;
    }
    
    .feature-tag {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
}

.hero-section {
    position: relative;
    min-height: auto;
    margin: -60px -20px 60px -20px;
    padding-top: 60px;
    background: #0a0a0f;
    overflow: visible;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: gradientMove 20s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 2%) rotate(2deg); }
    66% { transform: translate(-2%, 1%) rotate(-1deg); }
}

.bg-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bg-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.04;
    filter: grayscale(100%) blur(0.5px);
    pointer-events: none;
    animation: bgFloat 10s ease-in-out infinite;
}

.bg-icon:nth-child(1) { top: 8%; left: 8%; animation-delay: 0s; }
.bg-icon:nth-child(2) { top: 15%; left: 30%; animation-delay: 0.7s; }
.bg-icon:nth-child(3) { top: 12%; left: 55%; animation-delay: 1.4s; }
.bg-icon:nth-child(4) { top: 18%; left: 78%; animation-delay: 2.1s; }
.bg-icon:nth-child(5) { top: 8%; left: 92%; animation-delay: 2.8s; }
.bg-icon:nth-child(6) { top: 35%; left: 5%; animation-delay: 3.5s; }
.bg-icon:nth-child(7) { top: 40%; left: 28%; animation-delay: 4.2s; }
.bg-icon:nth-child(8) { top: 32%; left: 52%; animation-delay: 4.9s; }
.bg-icon:nth-child(9) { top: 38%; left: 75%; animation-delay: 5.6s; }
.bg-icon:nth-child(10) { top: 60%; left: 10%; animation-delay: 6.3s; }
.bg-icon:nth-child(11) { top: 55%; left: 35%; animation-delay: 7s; }
.bg-icon:nth-child(12) { top: 65%; left: 58%; animation-delay: 7.7s; }
.bg-icon:nth-child(13) { top: 58%; left: 82%; animation-delay: 8.4s; }
.bg-icon:nth-child(14) { top: 85%; left: 18%; animation-delay: 9.1s; }
.bg-icon:nth-child(15) { top: 88%; left: 45%; animation-delay: 9.8s; }
.bg-icon:nth-child(16) { top: 82%; left: 72%; animation-delay: 10.5s; }

@keyframes bgFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.04; }
    50% { transform: translateY(-20px) rotate(5deg); opacity: 0.07; }
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 60px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    color: #a5b4fc;
    width: fit-content;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin: 0;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    color: #f8fafc;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.5;
    max-width: 480px;
    margin: 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}

.cta-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, minmax(120px, auto));
    gap: 12px;
    height: auto;
    min-height: 260px;
}

.bento-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    gap: 12px;
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.bento-large {
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.bento-wide {
    grid-column: span 2;
}

.bento-icon {
    font-size: 2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    flex-shrink: 0;
}

.bento-content h3 {
    color: #f8fafc;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.bento-content p {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

.bento-tools {
    display: flex;
    gap: 12px;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.bento-tools span {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.bento-card:hover .bento-tools span {
    opacity: 1;
}

@media (max-width: 1024px) {
    .hero-section {
        min-height: auto;
        margin-top: -60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px 40px 40px;
    }
    
    .hero-bento {
        height: auto;
        min-height: 240px;
        grid-template-rows: repeat(2, minmax(100px, auto));
    }
    
    .bento-card {
        padding: 16px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-top: 80px;
        margin-top: -60px;
        overflow: visible;
    }
    
    .hero-container {
        padding: 30px 20px 30px;
    }
    
    .hero-content {
        gap: 16px;
        padding-top: 10px;
    }
    
    .hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
        padding-top: 5px;
    }
    
    .title-line {
        display: block;
        margin-bottom: 6px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-cta {
        margin-top: 4px;
    }
    
    .hero-bento {
        height: auto;
        min-height: 200px;
        gap: 8px;
    }
    
    .bento-card {
        padding: 12px;
        border-radius: 12px;
        gap: 8px;
    }
    
    .bento-icon {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
    
    .bento-content h3 {
        font-size: 1rem;
    }
    
    .bento-content p {
        font-size: 0.8rem;
    }
    
    .hero-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .bento-large,
    .bento-wide {
        grid-row: auto;
        grid-column: auto;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-primary,
    .cta-secondary {
        text-align: center;
    }
}
