body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0f0518 0%, #1a0a2e 50%, #0f0518 100%);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Page Header Wrapper (for non-home pages) */
.page-header-wrapper {
    padding-top: 120px;
    padding-bottom: 60px;
    background: radial-gradient(circle at top, #1a0a2e 0%, #05010a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */

.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-mask {
    display: inline-block;
    -webkit-mask: url(/images/clivtek-logo.svg) no-repeat center;
    mask: url(/images/clivtek-logo.svg) no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.nav-logo-icon {
    width: 140px;
    height: 25px; /* Aspect ratio ~9:1 (796x88) - 140x15.5 or 225x25 */
    width: 225px; 
    background: linear-gradient(135deg, #bc13fe, #00eaff);
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #00eaff;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #bc13fe;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
    flex-shrink: 0;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    position: relative;
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Active State for Hamburger */
.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ============================================
   HERO SECTION (UPDATED Hero 2.1)
   ============================================ */

.hero-section {
    position: relative;
    padding-top: 80px; /* Space for fixed nav */
    padding-bottom: 60px;
    overflow: hidden;
    background: #05010a;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Ambient Glow Effects (Inspiration from 21st.dev) */
.hero-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatBlob 10s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.hero-blob-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(to bottom, #bc13fe, #7000ff);
    animation-delay: 0s;
}

.hero-blob-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(to top, #00eaff, #00a8ff);
    animation-delay: -5s;
}

.hero-blob-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: rgba(255, 20, 147, 0.3);
    animation-duration: 15s;
}

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

.bg-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

/* Hero Content */
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-header-content {
    max-width: 900px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem 0.4rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(188, 19, 254, 0.5);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.2);
}

.badge-text {
    color: #a8a8b8;
}

.badge-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.2s;
}

.badge-link:hover {
    background: #bc13fe;
    color: #fff;
}

/* Typography */
.hero-section h1 {
    font-family: 'ENTRA-Caps', sans-serif; /* fallback */
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 50%, #b8a8d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    color: #a8a8b8;
    max-width: 650px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button.primary {
    /* Existing cta-button styles apply */
}

.cta-button.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Mockup Frame (3D & Glow) */
.hero-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    /* 3D Perspective */
    perspective: 1000px;
}

.hero-mockup-frame {
    position: relative;
    z-index: 2;
    background: rgba(15, 5, 25, 0.8);
    border-radius: 16px; /* slightly smaller radius than before */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px; /* inner frame padding */
    backdrop-filter: blur(20px);
    /* 3D Transforms - subtle tilt */
    transform: rotateX(5deg);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-mockup-wrapper:hover .hero-mockup-frame {
    transform: rotateX(0deg) scale(1.02);
}

.hero-mockup-content {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
}

.mockup-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0a2e, #2a0e3d);
    color: rgba(255, 255, 255, 0.3);
    font-family: monospace;
}

/* Glow Effect behind mockup */
.hero-mockup-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(188, 19, 254, 0.25) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.8;
}

/* Animations */
.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-500 { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-section h1 { font-size: 3rem; }
    .hero-description { font-size: 1.1rem; }
    .hero-header-content { margin-bottom: 2rem; }
}

/* ... Feature Cards ... */
.benefits-grid, .problem-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(20, 10, 30, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}

.feature-card.clivemind:hover { box-shadow: 0 20px 40px -10px rgba(0, 234, 255, 0.15); }
.feature-card.storiverse:hover { box-shadow: 0 20px 40px -10px rgba(188, 19, 254, 0.15); }

.card-image-placeholder {
    width: 100%;
    height: 200px;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.card-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .card-image-placeholder img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
}

.feature-card h3 {
    font-family: 'ENTRA-Caps', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    line-height: 1.2;
    color: #fff;
}

.feature-card.clivemind h3 { color: #00eaff; text-shadow: 0 0 15px rgba(0, 234, 255, 0.3); }
.feature-card.storiverse h3 { color: #bc13fe; text-shadow: 0 0 15px rgba(188, 19, 254, 0.3); }

.feature-card p {
    font-size: 1rem;
    color: #a8a8b8;
}

/* ... Reusing generic styles ... */

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(90deg, #bc13fe, #00eaff);
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 234, 255, 0.5);
    background: linear-gradient(90deg, #00eaff, #bc13fe);
}

/* Sections */
.section-title {
    font-family: 'ENTRA-Caps', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: #fff;
}

.section-desc {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: #b8a8d8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0f0518 0%, #1a0a2e 100%);
    position: relative;
}

.problem-section {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(180deg, #1a0a2e 0%, #0f0518 100%);
}

.stats-section, .faq-section {
    padding: 6rem 0;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Availability Section (Enhanced) */
.availability-section {
    padding: 8rem 0;
    background: radial-gradient(circle at center, #1a0a2e 0%, #05010a 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Abstract Background Pattern for Availability */
.availability-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 234, 255, 0.03) 1px, transparent 1px) 0 0 / 50px 50px;
    transform: rotate(15deg);
    z-index: 0;
}

.availability-section .container {
    position: relative;
    z-index: 1;
}

.platform-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.platform-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 234, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 234, 255, 0.2);
}

.platform-card .icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
}

.platform-card svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    transition: fill 0.3s;
}

.platform-card:hover svg {
    fill: #00eaff;
}

.platform-card h3 {
    font-size: 1rem;
    color: #b8a8d8;
    margin: 0;
    font-weight: 500;
}

.platform-card:hover h3 {
    color: #fff;
}

/* Status Badges (Coming Soon / Early Access) */
.status-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid;
    backdrop-filter: blur(5px);
}

.status-badge.cyan {
    background: rgba(0, 234, 255, 0.1);
    border-color: #00eaff;
    color: #00eaff;
    box-shadow: 0 0 10px rgba(0, 234, 255, 0.2);
}

.status-badge.purple {
    background: rgba(188, 19, 254, 0.1);
    border-color: #bc13fe;
    color: #bc13fe;
    box-shadow: 0 0 10px rgba(188, 19, 254, 0.2);
}

.status-badge.white {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #e0e0e0;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    text-align: center;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00eaff, #bc13fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(0,234,255,0.2);
    min-height: 1.2em; /* Ensure height with empty/loading content */
}
.stat-loading {
    animation: pulse-opacity 1.5s infinite ease-in-out;
    opacity: 0.7;
}
@keyframes pulse-opacity {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}
.stat-label { color: #b8a8d8; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; }

/* Form */
.form-section {
    padding: 8rem 0;
    text-align: center;
    background: #0f0518;
    position: relative;
}
.signup-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(25, 20, 35, 0.6);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-group label { display: block; margin-bottom: 0.5rem; color: #a8a8b8; font-weight: 500; font-size: 0.9rem; }
.form-group input, .form-group select {
    width: 100%; padding: 1rem; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.3);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}
.form-group input:focus, .form-group select:focus {
    outline: none; border-color: #bc13fe;
    background: rgba(0,0,0,0.5);
    box-shadow: 0 0 0 4px rgba(188, 19, 254, 0.1);
}

/* Enhanced Footer */
.footer {
    padding: 5rem 0 2rem;
    background: #05010a;
    border-top: 2px solid;
    border-image: linear-gradient(90deg, transparent, #bc13fe, #00eaff, transparent) 1;
    color: #a8a8b8;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    margin-bottom: 0.5rem;
    line-height: 0; /* Fix vertical spacing for image */
}

.footer-logo-icon {
    width: 180px;
    height: 20px;
    background: linear-gradient(135deg, #fff, #b8a8d8);
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col a {
    color: #a8a8b8;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: #00eaff;
    padding-left: 5px;
}

.creators {
    margin-top: 1rem;
    font-style: italic;
    color: #bc13fe;
}

.aus-made {
    color: #ffd700;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icon:hover {
    background: #bc13fe;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(188, 19, 254, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: #666;
}

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

@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }

    .nav-logo-icon {
        width: 160px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
        width: 100%;
    }
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile nav */
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 5, 24, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
        gap: 3rem;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
    }
    
    /* Lock body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* ============================================
   FORM ENHANCEMENTS (Added)
   ============================================ */

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 0.5rem;
    position: relative;
    top: -1px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.cta-button:disabled {
    opacity: 0.8;
    cursor: wait;
    background: #444; /* darker background when disabled if gradient is removed, or keep gradient with opacity */
    background: linear-gradient(90deg, #555, #666);
    box-shadow: none;
    border-color: rgba(255,255,255,0.1);
}

/* Status Messages */
.status-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-message.visible {
    opacity: 1;
    transform: translateY(0);
    display: flex;
    display: block; /* use block or flex? text alignment is center, flex complicates wrapping. Let's use block for simplicity or flex centered */
    display: flex;
}

.status-message.success {
    background: rgba(0, 234, 255, 0.1);
    border: 1px solid rgba(0, 234, 255, 0.3);
    color: #e0faff;
    box-shadow: 0 10px 30px -10px rgba(0, 234, 255, 0.2);
}

.status-message.error {
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    color: #ffdceb;
    box-shadow: 0 10px 30px -10px rgba(255, 20, 147, 0.2);
}

.status-icon {
    font-size: 1.2rem;
}

/* ============================================
   SPAM PROTECTION (Added)
   ============================================ */

/* Honeypot Field (Hidden) */
.trap-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

/* Custom Human Checkbox */
.human-check {
    display: flex;
    align-items: center;
    justify-content: center; /* Centered for this design */
    margin-bottom: 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s;
}

.human-check input {
    display: none; /* Hide default checkbox */
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: rgba(0,0,0,0.2);
}

.human-check:hover .checkmark {
    border-color: #bc13fe;
    box-shadow: 0 0 10px rgba(188, 19, 254, 0.2);
}

.human-check input:checked ~ .checkmark {
    background: linear-gradient(135deg, #bc13fe, #00eaff);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.4);
}

.human-check input:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.human-label {
    color: #a8a8b8;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.human-check input:checked ~ .human-label {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* ============================================
   PROFILE / ABOUT SECTIONS (Added)
   ============================================ */
.profile-section {
    padding: 2rem 0;
}

.profile-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 6rem;
}

.profile-grid.reverse {
    flex-direction: row-reverse;
}

.profile-image {
    flex: 1;
    min-width: 350px;
}

.profile-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.02);
    border-color: rgba(255,255,255,0.2);
}

.profile-content {
    flex: 1;
    min-width: 350px;
}

.profile-title {
    font-family: 'ENTRA-Caps', sans-serif; /* Fallback to existing if not set */
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.profile-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    text-shadow: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
}

.profile-badge.voice {
    background: rgba(188, 19, 254, 0.15);
    border-color: #bc13fe;
    color: #fff;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.2);
    margin-bottom: 0rem;
}

.profile-badge.protector {
    background: rgba(0, 234, 255, 0.15);
    border-color: #00eaff;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.2);
    margin-bottom: 0rem;
}

.profile-content p {
    font-size: 1.1rem;
    color: #a8a8b8;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.text-voice { color: #bc13fe; text-shadow: 0 0 15px rgba(188, 19, 254, 0.3); }
.text-protector { color: #00eaff; text-shadow: 0 0 15px rgba(0, 234, 255, 0.3); }

/* Intro Section */
.intro-section {
    padding: 6rem 0 4rem;
    position: relative;
    /* Subtle separation background */
    background: radial-gradient(ellipse at top, rgba(26, 10, 46, 0.6) 0%, rgba(5, 1, 10, 0) 70%); 
}

.intro-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #bc13fe, #00eaff, transparent);
    opacity: 0.3;
}

.about-intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #b8a8d8;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro-text p {
    margin-bottom: 1.5rem;
}

.about-intro-text p:last-child {
    margin-bottom: 0;
}

.about-intro-text strong {
    color: #fff;
    font-weight: 600;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
    position: relative;
    background: rgba(0,0,0,0.2); /* Slight darkening for separation */
}

.timeline-title {
    font-family: 'ENTRA-Caps', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    letter-spacing: 0.1em;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Vertical Line */
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.2);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeInTimeline 0.5s forwards;
}

@keyframes fadeInTimeline {
    to { opacity: 1; }
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* The dots */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: #05010a;
    border: 3px solid #bc13fe;
    top: 24px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(188, 19, 254, 0.5);
}

.timeline-item:nth-child(even)::after {
    right: auto;
    left: -8px;
    border-color: #00eaff;
    box-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
}

.timeline-item:hover::after {
    background-color: #fff;
    transform: scale(1.2);
}

/* Content */
.timeline-content {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    display: inline-block; /* Wraps tightly around content for cleaner look on wide screens? Or keep block? */
    display: block;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.timeline-date {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
    font-family: 'ENTRA-Caps', sans-serif;
    letter-spacing: 0.05em;
    display: block;
}

.timeline-text {
    font-size: 1rem;
    color: #b8a8d8;
    line-height: 1.5;
    margin: 0;
}

.timeline-icon {
    margin-bottom: 10px;
    color: #bc13fe;
    display: inline-block;
}

.timeline-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.timeline-item.highlight .timeline-icon {
    color: #ffd700;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ff0055, #ff5500);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 10px;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 0, 85, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 0, 85, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 0, 85, 0.5); }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Specific Timeline Item Highlights */
.timeline-item.highlight .timeline-text {
    color: #fff;
    font-weight: 500;
}

/* Media queries */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item:nth-child(odd) {
      left: 0;
      text-align: left;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-item:nth-child(odd)::after, .timeline-item:nth-child(even)::after {
    left: 23px;
    right: auto;
  }
}

/* Responsive Logo */
.storiverse-logo {
    max-width: 100%;
    width: 500px;
    height: auto;
}

@media (max-width: 768px) {
    .profile-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .profile-grid.reverse {
        flex-direction: column;
    }
    
    .profile-title {
        font-size: 2rem;
        text-align: center;
    }

    .profile-badge {
        display: table; /* Centers better with auto margins than block/width combo sometimes, or stick to block/fit-content */
        display: block;
        width: fit-content;
        margin: 0 auto 1rem;
    }
    
    .profile-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}
