:root {
    --perceptive-blue: #3C6DFF;
    --train-yellow: #FFCA3A;
    --ink-black: #0E0E11;
    --friendly-mint: #34D1BF;
    --soft-paper-white: #F8F7F4;
    --proto-purple: #8B55FF;
    --hot-coral: #FF6F5E;
    --cloud-gray: #C5C8D0;

    --font-heading: 'Montserrat Alternates', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-code: 'JetBrains Mono', monospace;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--soft-paper-white);
    color: var(--ink-black);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

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

.blob-1 {
    width: 400px;
    height: 400px;
    background-color: var(--perceptive-blue);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background-color: var(--train-yellow);
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

.blob-3 {
    width: 200px;
    height: 200px;
    background-color: var(--friendly-mint);
    top: 40%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

.container {
    text-align: center;
    padding: 2rem;
    position: relative;
    max-width: 800px;
    width: 100%;
    perspective: 1000px;
}

.logo-container {
    margin-bottom: 3rem;
}

.main-logo {
    max-width: 300px;
    height: auto;
}

.content-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(14, 14, 17, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--ink-black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

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

input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--cloud-gray);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--perceptive-blue);
    box-shadow: 0 0 0 4px rgba(60, 109, 255, 0.1);
}

button {
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    background-color: var(--perceptive-blue);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

button:hover {
    background-color: var(--proto-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(60, 109, 255, 0.3);
}

.decorations {
    position: relative;
    height: 0;
}

.cat {
    position: absolute;
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.cat:hover {
    transform: scale(1.1) rotate(5deg);
}

.cat-1 {
    bottom: 280px;
    left: -140px;
    transform: rotate(-10deg);
}

.cat-2 {
    top: -450px;
    right: -120px;
    transform: rotate(15deg);
}

.cat-3 {
    bottom: -100px;
    right: 20px;
    width: 100px;
    transform: rotate(-5deg);
}

.counter-text {
    margin-top: 1.5rem;
    font-family: var(--font-code);
    font-size: 0.9rem;
    color: var(--ink-black);
    opacity: 0.8;
}

.mission-statement {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 200, 208, 0.5);
}

.mission-statement h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--perceptive-blue);
    margin-bottom: 1rem;
}

.mission-statement p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-black);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .waitlist-form {
        flex-direction: column;
    }
}

.blob-2 {
    width: 300px;
    height: 300px;
    background-color: var(--train-yellow);
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

.blob-3 {
    width: 200px;
    height: 200px;
    background-color: var(--friendly-mint);
    top: 40%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

.container {
    text-align: center;
    padding: 2rem;
    position: relative;
    max-width: 800px;
    width: 100%;
    perspective: 1000px;
}

.logo-container {
    margin-bottom: 3rem;
}

.main-logo {
    max-width: 300px;
    height: auto;
}

.content-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(14, 14, 17, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--ink-black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

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

input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--cloud-gray);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--perceptive-blue);
    box-shadow: 0 0 0 4px rgba(60, 109, 255, 0.1);
}

button {
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    background-color: var(--perceptive-blue);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

button:hover {
    background-color: var(--proto-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(60, 109, 255, 0.3);
}

.decorations {
    position: relative;
    height: 0;
}

.cat {
    position: absolute;
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.cat:hover {
    transform: scale(1.1) rotate(5deg);
}

.cat-1 {
    bottom: 280px;
    left: -140px;
    transform: rotate(-10deg);
}

.cat-2 {
    top: -450px;
    right: -120px;
    transform: rotate(15deg);
}

.cat-3 {
    bottom: -100px;
    right: 20px;
    width: 100px;
    transform: rotate(-5deg);
}

.counter-text {
    margin-top: 1.5rem;
    font-family: var(--font-code);
    font-size: 0.9rem;
    color: var(--ink-black);
    opacity: 0.8;
}

.mission-statement {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 200, 208, 0.5);
}

.mission-statement h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--perceptive-blue);
    margin-bottom: 1rem;
}

.mission-statement p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-black);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .content-card {
        padding: 2rem;
    }
}

@media (max-width: 1024px) {
    .cat {
        display: none;
    }
}