/* General Styling & Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FDFBF8;
    color: #5C5C5C;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#mote-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* --- 3D Scene and Content Card --- */
.scene-container {
    position: relative;
    z-index: 1;
    perspective: 1500px;
}

.content-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    width: 90vw;
    max-width: 450px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    /* Initial state for the grand reveal animation */
    opacity: 0;
    clip-path: circle(0% at center);
}

/* --- Element Styling (matching your image) --- */
.crest-logo {
    width: 350px;
    margin-bottom: 20px;
    opacity: 0; /* Hidden for cascade animation */
}

.tagline {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #6D6D6D;
    opacity: 0; /* Hidden for cascade animation */
}

.main-title {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.2em; /* Spaced out letters */
    text-transform: uppercase;
    color: #5C5C5C;
    margin-bottom: 30px;
    opacity: 0; /* Hidden for cascade animation */
}

.subscribe-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    opacity: 0; /* Hidden for cascade animation */
}

.subscribe-form input {
    font-family: 'Montserrat', sans-serif;
    padding: 18px 25px;
    border: 1px solid #EAE5E0;
    border-radius: 50px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.subscribe-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(184, 168, 141, 0.3);
}

.subscribe-form button {
    font-family: 'Montserrat', sans-serif;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    background-color: #B8A88D; /* Muted gold from image */
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #a5967c;
    transform: translateY(-2px);
}

.social-links {
    opacity: 0; /* Hidden for cascade animation */
}

.social-links a {
    color: #C3C0C7; /* Muted icon color from image */
    font-size: 1.3rem;
    margin: 0 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #B8A88D;
}