/* Apeax Brand Colors */
:root {
    --apeax-lime-green: #9AFF00;  /* Apeax signature lime green */
    --apeax-dark-green: #7ACC00;  /* Darker shade of lime green */
    --apeax-black: #000000;       /* Pure black */
    --apeax-white: #FFFFFF;       /* Pure white */
    --apeax-dark-bg: #0A0A0A;     /* Very dark background */
    --apeax-gray: #333333;        /* Dark gray for text */
    --apeax-light-gray: #F5F5F5;  /* Light gray backgrounds */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--apeax-black);
    color: var(--apeax-white);
    overflow-x: hidden;
}

/* Navigation */
.apeax-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(154, 255, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.back-link, .portal-link {
    color: var(--apeax-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover, .portal-link:hover {
    color: var(--apeax-lime-green);
}

/* Hero Section */
.hero-section {
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
        /* background removed to allow inline background-image to show */
    margin-top: 80px;
    border-bottom: 2px solid var(--apeax-lime-green);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
        pointer-events: none;
        /* Overlay the hero-section background image with blur and brightness */
        background: inherit;
        filter: blur(8px) brightness(0.8);
        opacity: 1;
    filter: blur(2px) brightness(0.7);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
        /* keep dark overlay if needed, but remove background image */
    backdrop-filter: blur(1px);
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 2;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--apeax-lime-green), var(--apeax-dark-green));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    bottom: 20%;
    right: 40%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
}

.logo-container {
    display: inline-block;
}

.apeax-logo-img {
    max-width: 400px;
    height: auto;
    filter: brightness(1.1) drop-shadow(0 0 30px rgba(154, 255, 0, 0.6));
    transition: filter 0.3s ease;
}

.apeax-logo-img:hover {
    filter: brightness(1.2) drop-shadow(0 0 40px rgba(154, 255, 0, 0.8)) drop-shadow(0 0 80px rgba(154, 255, 0, 0.5));
}

/* Coming Soon Section */
.coming-soon-section {
    text-align: center;
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--apeax-lime-green);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(154, 255, 0, 0.5);
}

.coming-soon-subtitle {
    font-size: 1.2rem;
    color: var(--apeax-white);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: rgba(154, 255, 0, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--apeax-lime-green);
    min-width: 120px;
    width: 120px;
    flex-shrink: 0;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--apeax-lime-green);
    text-shadow: 0 0 10px rgba(154, 255, 0, 0.5);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--apeax-white);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Section */
.content-section {
    background: var(--apeax-white);
    color: var(--apeax-black);
    padding: 4rem 0;
    min-height: 25vh;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Product Focus Section */
.product-focus-section {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--apeax-black);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--apeax-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Overview Section */
.product-overview-section {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #E5E5E5;
}

.overview-description {
    font-size: 1.1rem;
    color: var(--apeax-gray);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Features Section with Flat Background and Logo */
.features-section {
    background: #1A1A1A;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 450px;
    background-image: url('../apeaxaussurfaceprotection.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
    filter: drop-shadow(0 0 30px rgba(154, 255, 0, 0.3));
    z-index: 1;
    pointer-events: none;
}

.features-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(154, 255, 0, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: left;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--apeax-lime-green), transparent);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(154, 255, 0, 0.4);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(154, 255, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(154, 255, 0, 0.3));
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--apeax-white);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Features Header within Glassmorphism Section */
.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--apeax-white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.features-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .features-preview {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .features-preview {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Industry Section */
.industry-section {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    justify-content: center;
}

.industry-item {
    background: var(--apeax-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E5E5E5;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 400px;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.industry-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-item:hover .industry-image img {
    transform: scale(1.05);
}

.industry-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.industry-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--apeax-black);
    margin-bottom: 1rem;
}

.industry-description {
    color: var(--apeax-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.use-case {
    margin-bottom: 1.5rem;
}

.use-case p {
    color: var(--apeax-gray);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

.benefits p {
    color: var(--apeax-black);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits li {
    color: var(--apeax-gray);
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.benefits li::before {
    content: "•";
    color: var(--apeax-lime-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Notify Section */
.notify-section {
    background: var(--apeax-black);
    color: var(--apeax-white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
    border: 2px solid var(--apeax-lime-green);
}

.notify-section h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--apeax-lime-green);
}

.notify-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.notify-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--apeax-lime-green);
    border-radius: 10px;
    background: var(--apeax-white);
    color: var(--apeax-black);
    font-size: 1rem;
    min-width: 250px;
}

.notify-form input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(154, 255, 0, 0.3);
}

.notify-form button {
    padding: 1rem 2rem;
    background: var(--apeax-lime-green);
    color: var(--apeax-black);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.notify-form button:hover {
    background: var(--apeax-dark-green);
    transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
    text-align: center;
    padding: 2rem 0;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--apeax-gray);
}

.contact-info a {
    color: var(--apeax-lime-green);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    color: var(--apeax-lime-green) !important;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--apeax-lime-green);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--apeax-lime-green);
    color: var(--apeax-black) !important;
    text-decoration: none !important;
}

/* Footer */
.apeax-footer {
    background: var(--apeax-black);
    color: var(--apeax-white);
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--apeax-lime-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .apeax-logo-img {
        max-width: 320px;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .countdown-container {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-form input {
        min-width: 100%;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .apeax-logo-img {
        max-width: 280px;
    }
    
    .coming-soon-title {
        font-size: 1.8rem;
    }
    
    .content-wrapper {
        padding: 0 1rem;
    }
}