:root {
    --bg-color: #f5f7fa;
    --text-main: #1d1d1f;
    --text-secondary: #86868b;
    --primary-color: #0066cc;
    --primary-hover: #004499;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background animated blobs for modern feel */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: #e0f2fe; /* Light blue */
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: #e0e7ff; /* Light indigo */
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 50%;
    width: 30vw;
    height: 30vw;
    background: #f3e8ff; /* Light purple */
    animation-delay: -2s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* Typography & Utilities */
.jp-text {
    font-size: 0.8em;
    color: var(--text-secondary);
    margin-left: 4px;
}

.jp-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.gradient-text {
    background: linear-gradient(135deg, #0066cc, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism Utilities */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 70px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-shadow: var(--glass-shadow);
    z-index: 100;
}

.glass-nav .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-kanji {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    color: white;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 400;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
    font-family: "Yu Mincho", "MS Mincho", serif;
}

.glass-nav .nav-links {
    display: flex;
    gap: 30px;
}

.glass-nav .nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: opacity 0.2s;
}

.glass-nav .nav-links a:hover {
    opacity: 0.7;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    background: rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 4px;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 6px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lang-btn.active {
    background: white;
    color: var(--text-main);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Buttons */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(0, 102, 204, 0.3);
}

.primary-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.secondary-btn {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--text-main);
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid rgba(0,0,0,0.1);
}

.secondary-btn:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    min-height: 80vh;
    gap: 50px;
}

.hero-content {
    flex: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 50px;
    box-shadow: var(--glass-shadow);
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 10px;
}

.description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.stats-row {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.stat-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Hero Image & Mockup */
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.glass-app-mockup {
    width: 350px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), inset 0 0 0 1px rgba(255,255,255,0.5);
    padding: 20px;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.glass-app-mockup:hover {
    transform: rotateY(0) rotateX(0) translateY(-10px);
}

.mockup-header {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    padding-left: 10px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot.red { background: #ff5f56; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #27c93f; }

.mockup-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: transform 0.2s;
}

.mockup-card.active-card {
    border: 1px solid rgba(0, 102, 204, 0.3);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.1);
}

.gradient-bg {
    background: linear-gradient(135deg, #0066cc, #8b5cf6) !important;
    color: white;
}

.mockup-card:hover {
    transform: scale(1.02);
}

.card-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: white;
}

.card-icon i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.card-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.card-text p {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.apply-btn {
    margin-left: auto;
    background: var(--text-main);
    color: white;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        padding-top: 120px;
    }
    
    .hero-content {
        padding: 30px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .glass-app-mockup {
        transform: none;
    }
}

@media (max-width: 600px) {
    .glass-nav {
        width: 95%;
        padding: 0 15px;
    }
    
    .nav-links {
        display: none; /* Hide on mobile for now */
    }
    
    .hero-content {
        box-shadow: 0 20px 40px rgba(0,0,0,0.08), inset 0 0 0 1px rgba(255,255,255,1);
        background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .stats-row {
        flex-direction: row;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.5);
        padding: 15px 10px;
        border-radius: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05), inset 0 0 0 1px rgba(255,255,255,1);
        gap: 5px;
        margin-top: 30px;
        padding-top: 15px;
        border-top: none;
    }
    
    .stat-item h3 { font-size: 1.4rem; margin-bottom: 2px; }
    .stat-item p { font-size: 0.75rem; font-weight: 600; }
}

/* Features Section */
.features-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 10;
}

.feature-card {
    padding: 50px 30px;
    border-radius: 32px;
    text-align: center;
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.4));
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 102, 204, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 1);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,1), rgba(255,255,255,0.5));
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06), inset 0 0 0 1px rgba(255,255,255,0.8);
    transform: rotate(-5deg);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.15), inset 0 0 0 1px rgba(255,255,255,1);
    background: linear-gradient(135deg, #0066cc, #8b5cf6);
}

.feature-icon {
    font-size: 2rem;
    color: var(--text-main);
    transition: all 0.6s ease;
}

.feature-card:hover .feature-icon {
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.jp-text-large {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

/* Waitlist Section */
.glass-container {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 10;
}

.waitlist-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    border-radius: 32px;
}

.waitlist-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.waitlist-form {
    display: flex;
    max-width: 500px;
    margin: 30px auto 0;
    gap: 10px;
}

.waitlist-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 100px;
    border: 1px solid rgba(0,0,0,0.1);
    outline: none;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.waitlist-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.glass-footer {
    padding: 40px 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Animated Phone and Floating Badges */
.animated-phone-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    animation: softFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 102, 204, 0.15));
    position: relative;
    z-index: 2;
}

@keyframes softFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating-badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--glass-shadow);
    z-index: 3;
    animation: badgeFloat 5s ease-in-out infinite alternate;
}

.badge-icon {
    font-size: 1.5rem;
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    color: var(--text-main);
}

.badge-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-main);
}

.badge-text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.badge-1 {
    top: 10%;
    left: -15%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 25%;
    right: -20%;
    animation-delay: 1.5s;
}

.badge-3 {
    bottom: 10%;
    left: -10%;
    animation-delay: 3s;
}

@keyframes badgeFloat {
    0% { transform: translateY(0px) rotate(-2deg); }
    100% { transform: translateY(-10px) rotate(2deg); }
}

@media (max-width: 992px) {
    .badge-1 { left: -5%; }
    .badge-2 { right: -5%; }
    .badge-3 { left: 0%; }
}

@media (max-width: 600px) {
    .waitlist-form {
        flex-direction: column;
    }
}

/* App Showcase Section */
.app-showcase-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 10;
}

.showcase-content {
    flex: 1;
    padding: 50px;
    border-radius: 32px;
}

.showcase-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.animated-phone-wrapper.large-showcase {
    flex: 1.5;
    max-width: 600px;
}

@media (max-width: 992px) {
    .app-showcase-section {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobbin Stats Section */
.mobbin-stats-section {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
}

.stats-center {
    z-index: 10;
}

.stats-center p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 500;
}

.stats-center h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.5px;
    color: var(--text-main);
}

.floating-icons {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.8rem;
    color: #1d1d1f;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.9);
}

@keyframes floatPath1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(15px, -25px) rotate(5deg); }
    66% { transform: translate(-10px, -15px) rotate(-5deg); }
}
@keyframes floatPath2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-25px, 20px); }
}
@keyframes floatPath3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, 25px) scale(1.05); }
}
@keyframes floatPath4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, 20px) rotate(10deg); }
    50% { transform: translate(0px, 40px) rotate(0deg); }
    75% { transform: translate(-20px, 20px) rotate(-10deg); }
}
@keyframes floatPath5 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -35px); }
}
@keyframes floatPath6 {
    0%, 100% { transform: translate(0, 0) rotate(-8deg); }
    50% { transform: translate(35px, -15px) rotate(8deg); }
}
@keyframes floatPath7 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-25px, -20px) scale(0.95); }
    66% { transform: translate(15px, -35px) scale(1.05); }
}

.icon-1 { top: 10%; left: 5%; animation: floatPath1 8s ease-in-out infinite; }
.icon-2 { top: 15%; right: 5%; animation: floatPath2 7s ease-in-out infinite; }
.icon-3 { bottom: 10%; left: 10%; animation: floatPath3 9s ease-in-out infinite; }
.icon-4 { bottom: 15%; right: 10%; animation: floatPath4 12s linear infinite; }
.icon-5 { top: 50%; left: -2%; animation: floatPath5 6.5s ease-in-out infinite; }
.icon-6 { top: 40%; right: -2%; animation: floatPath6 8.5s ease-in-out infinite; }
.icon-7 { top: 0%; left: 50%; margin-left: -50px; animation: floatPath7 11s ease-in-out infinite; }

/* Investor Section Redesign */
.investor-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 80px 40px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.investor-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.investor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.investor-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 45px 35px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.investor-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 30px 60px rgba(0, 102, 204, 0.1);
    border-color: var(--primary-color);
}

.investor-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 204, 0.08);
    color: var(--primary-color);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.investor-card:hover .investor-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.investor-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

.investor-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #111;
    color: white;
    padding: 16px 36px;
    border-radius: 16px;
    font-size: 1.3rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.store-btn i {
    font-size: 1.8rem;
}

.waitlist-form-container {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 40px auto 20px;
    background: white;
    padding: 8px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.waitlist-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
    outline: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
}

.form-message {
    margin-top: 10px;
    font-weight: 600;
    min-height: 24px;
}

.form-message.success { color: #27c93f; }
.form-message.error { color: #ff5f56; }

.store-btn.coming-soon {
    position: relative;
    opacity: 0.8;
}

.store-btn.coming-soon:after {
    content: 'Coming Soon';
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: white;
    font-size: 0.6rem;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    background: #000;
}

.heavy-glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(255,255,255,0.5);
    padding: 80px 40px;
}

.dark-heading {
    font-size: 3.2rem !important;
    color: #111 !important;
    font-weight: 800 !important;
    letter-spacing: -1px;
}

.dark-text {
    color: #333 !important;
}

.large-text {
    font-size: 1.3rem !important;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

.parent-company-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(0, 102, 204, 0.4);
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.parent-company-link:hover {
    color: var(--primary-color);
    text-decoration-color: var(--primary-color);
}



@media (max-width: 1200px) {
    .investor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mobbin-stats-section { padding: 120px 20px; }
    .icon-5 { left: 0%; }
    .icon-6 { right: 0%; }
}

@media (max-width: 768px) {
    .investor-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .mobbin-stats-section { padding: 100px 20px; }
    .stats-center h2 { font-size: 2.8rem; }
    .float-icon { width: 70px; height: 70px; font-size: 1.8rem; }
    .icon-1 { top: 5%; left: 2%; }
    .icon-2 { top: 5%; right: 2%; }
    .icon-3 { bottom: 5%; left: 5%; }
    .icon-4 { bottom: 5%; right: 5%; }
    .icon-7 { margin-left: -35px; top: -5%; }
}

@media (max-width: 600px) {
    .mobbin-stats-section { padding: 80px 20px; }
    .stats-center h2 { font-size: 2.2rem; }
    .float-icon { width: 50px; height: 50px; font-size: 1.3rem; }
    .icon-5, .icon-6 { display: none; }
    .icon-1 { top: 2%; left: 0%; }
    .icon-2 { top: 2%; right: 0%; }
    .icon-3 { bottom: 2%; left: 2%; }
    .icon-4 { bottom: 2%; right: 2%; }
    .icon-7 { margin-left: -25px; top: -8%; }
    .app-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 800px) {
    /* Navbar fixes for mobile */
    .glass-nav {
        padding: 0 15px;
        height: 60px;
    }
    
    .glass-nav .nav-links, .glass-nav .primary-btn {
        display: none; /* Hide text links and Waitlist button on mobile to save space */
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
    
    /* App buttons fixes for mobile */
    .app-buttons {
        gap: 15px;
        margin-top: 30px;
    }
    
    .store-btn {
        padding: 12px 25px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .store-btn i {
        font-size: 1.5rem;
    }
    
    .dark-heading {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }
    
    .heavy-glass {
        padding: 50px 20px;
    }
}

/* Michi App Mockup Styles */
.phone-mockup-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: softFloat 6s ease-in-out infinite;
}

.phone-mockup-img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    filter: drop-shadow(0 20px 40px rgba(0, 102, 204, 0.15));
}

@keyframes softFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@media (max-width: 600px) {
    .phone-mockup-container {
        max-width: 320px;
    }
}
