/* Base Styles & Brutalist Reset */
:root {
    --color-black: #111111;
    --color-white: #FFFFFF;
    --color-dark-grey: #222222;
    --color-medium-grey: #444444;
    --color-light-grey: #EEEEEE;

    /* Pastel Accents */
    --color-mint: #A3FFD6; /* Soft green */
    --color-blush: #FFD1DC; /* Soft pink */
    --color-lavender: #E0BBE4; /* Soft purple */
    --color-soft-blue: #ADD8E6; /* Soft blue */

    --font-heading: 'Chakra Petch', sans-serif; /* For bold, angular brutalist headings */
    --font-body: 'Space Mono', monospace; /* For clear, functional body text */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-light-grey);
    background-color: var(--color-black);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    min-height: 100vh; /* Ensure body takes full height */
    display: flex;
    flex-direction: column;
}

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

a {
    color: var(--color-mint);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-white);
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(3em, 8vw, 6em);
    line-height: 1;
    letter-spacing: 0.1em;
}

h2 {
    font-size: clamp(2em, 5vw, 3.5em);
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 40px;
}

h3 {
    font-size: clamp(1.2em, 3vw, 1.8em);
    margin-bottom: 10px;
}

p {
    font-size: 1.1em;
    margin-bottom: 1em;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.2em;
    color: var(--color-medium-grey);
}

/* Header - Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-align: center;
    overflow: hidden;
}

.scroll-down-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.arrow-icon {
    font-size: 2rem;
    color: var(--color-mint, #00ff99);
    cursor: pointer;
}

.feature-grid-section {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.hero-title {
    color: var(--color-mint); /* Main title in accent color */
    margin-bottom: 20px;
    position: relative; /* For glitch effect */
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.5em, 4vw, 2.5em);
    color: var(--color-light-grey);
    letter-spacing: 0.08em;
    margin-bottom: 30px;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    color: var(--color-medium-grey);
}

/* Feature Grid */
.feature-grid-section {
    padding: 80px 0;
    background-color: var(--color-black);
    border-bottom: 1px solid var(--color-medium-grey);
    opacity: 0;
    pointer-events: none;

}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-box {
    background-color: var(--color-dark-grey);
    padding: 30px;
    border: 2px solid var(--color-medium-grey);
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes content and description */
    min-height: 250px; /* Ensure consistent height */
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--color-mint) 0%, var(--color-soft-blue) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-box:hover::before {
    opacity: 0.1; /* Subtle pastel wash on hover */
}

.feature-box:hover {
    border-color: var(--color-mint);
    transform: translateY(-5px);
}

.feature-box h3 {
    color: var(--color-mint);
    margin-bottom: 15px;
    font-size: 1.5em;
    position: relative;
    z-index: 1;
}

.feature-box p {
    color: var(--color-light-grey);
    font-size: 1em;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.disclaimer-section {
    background-color: #000000;
    padding: 1rem 0;
    border-top: 1px solid #000000;
}

.disclaimer-text {
    color: #555;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

/* Feature Icons (Minimalist SVG/Font Icons recommended) */
.feature-icon {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 2px solid var(--color-soft-blue);
    position: relative;
    z-index: 1;
    /* Placeholder for actual SVG or icon font */
    background-color: var(--color-dark-grey); /* Faux icon background */
}

.image-placeholder {
    text-align: center;
}

/* Example icon styles (you'd replace with actual SVG or FontAwesome/icon font) */
.icon-ai::before {
    content: '🧠';
    font-size: 30px;
    line-height: 56px;
    display: block;
}

.icon-daw::before {
    content: '🎧';
    font-size: 30px;
    line-height: 56px;
    display: block;
}

.icon-morph::before {
    content: '🧬';
    font-size: 30px;
    line-height: 56px;
    display: block;
}

.icon-integration::before {
    content: '🔌';
    font-size: 30px;
    line-height: 56px;
    display: block;
}


/* Demo Video Section */
.demo-video-section {
    padding: 80px 0;
    background-color: var(--color-black);
    text-align: center;
    border-bottom: 1px solid var(--color-medium-grey);
}

.video-placeholder {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    background-color: var(--color-dark-grey);
    border: 4px solid var(--color-soft-blue);
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-placeholder .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-mint);
    color: var(--color-black);
    border: none;
    padding: 20px 40px;
    font-family: var(--font-heading);
    font-size: 1.8em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid var(--color-black);
}


@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

.video-placeholder .play-button:hover {
    background-color: var(--color-blush);
    color: var(--color-black);
    transform: translate(-50%, -50%) scale(1.05);
}

.image-placeholder img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Call to Action */
.cta-section .cta-button {
    display: inline-block;
    margin: 40px auto;
    visibility: visible;
    opacity: 1;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--color-dark-grey);
    text-align: center;
    border-bottom: 4px solid var(--color-lavender);
}

.cta-button {
    display: inline-block;
    background-color: var(--color-lavender);
    color: var(--color-black);
    padding: 25px 60px;
    font-family: var(--font-heading);
    font-size: 1.8em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 3px solid var(--color-lavender);
    transition: all 0.3s ease;
    margin-top: 30px;
}

.cta-button:hover {
    background-color: var(--color-black);
    color: var(--color-lavender);
    border-color: var(--color-lavender);
    transform: translateY(-5px);
}

/* Footer */
.footer-section {
    background-color: var(--color-black);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9em;
    color: var(--color-medium-grey);
    margin-top: auto; /* Pushes footer to bottom */
    border-top: 1px solid var(--color-medium-grey);
}

.footer-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright {
    flex-basis: 100%; /* Default to full width on small screens */
    order: 3; /* Move to bottom on small screens */
}

.social-icons {
    display: flex;
    gap: 20px;
    flex-grow: 1; /* Allow to take space */
    justify-content: center;
}

.social-icon {
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-medium-grey);
    transition: border-color 0.3s ease;
    position: relative;
}

.social-icon:hover {
    border-color: var(--color-blush);
}

/* Placeholder for actual social icons */
.icon-x::before {
    content: 'X';
    font-family: var(--font-body);
    font-size: 1.2em;
    line-height: 28px;
    display: block;
    text-align: center;
    color: var(--color-medium-grey);
}

.icon-instagram::before {
    content: 'IG';
    font-family: var(--font-body);
    font-size: 1.2em;
    line-height: 28px;
    display: block;
    text-align: center;
    color: var(--color-medium-grey);
}

.icon-github::before {
    content: 'GH';
    font-family: var(--font-body);
    font-size: 1.2em;
    line-height: 28px;
    display: block;
    text-align: center;
    color: var(--color-medium-grey);
}

.social-icon:hover::before {
    color: var(--color-blush);
}

.contact-email {
    color: var(--color-medium-grey);
    font-size: 1em;
    order: 2; /* Middle position on small screens */
}

.contact-email:hover {
    color: var(--color-white);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .footer-section .container {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .copyright {
        flex-basis: auto;
        order: 1;
    }

    .social-icons {
        order: 2;
    }

    .contact-email {
        order: 3;
    }
}

@media (max-width: 768px) {


    .container {
        padding: 15px;
    }

    .hero-section {
        padding: 20px 15px;
        overflow-x: hidden;
    }

    .hero-title {
        font-size: 2.5em;
        word-break: break-word;
        white-space: normal;
        text-align: center;
    }

    .hero-description {
        font-size: 1em;
        text-align: center;
        word-wrap: break-word;
    }

    h1 {
        font-size: 3em;
    }

    h2 {
        font-size: 2em;
    }


    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-box {
        min-height: auto;
    }

    .cta-button {
        padding: 20px 40px;
        font-size: 1.4em;
    }

    .footer-section .container {
        flex-direction: column;
        gap: 15px;
    }

    .copyright, .contact-email, .social-icons {
        flex-basis: auto;
        text-align: center;
        width: 100%;
    }
}

#waitlist-form {
  opacity: 1;
}

