:root {
    --light-green: #05c373;
    --dark-green: #096544;
    --white: #ffffff;
    --noise-opacity: 0.15;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    background: radial-gradient(circle at center, var(--light-green) 0%, var(--dark-green) 100%);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    opacity: var(--noise-opacity);
    filter: url(#grain);
}

.landing-container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Flanked Text (Welcome to and Coming Soon) */
.flanked-text {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 800px; /* Adjust based on mockup feel */
    gap: 1rem;
}

.flanked-text .line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--white);
    opacity: 0.7;
}

/* Script Fonts */
.flanked-text .script-text {
    font-family: 'Sacramento', cursive;
    font-weight: 400;
    font-size: clamp(1.5rem, 5vw, 2.5rem); /* Responsive sizing */
    white-space: nowrap;
}

/* Main H1 - TiceFam.com */
#main-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 15vw, 8rem); /* Large display scale */
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0.5rem 0;
}

/* Tagline */
.tagline {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    max-width: 700px;
    opacity: 0.9;
    text-wrap: balance;
}

.coming-soon {
    margin-top: 1rem;
}

/* Responsiveness tweaks for phones */
@media (max-width: 600px) {
    .content {
        gap: 1rem;
    }
    .flanked-text {
        max-width: 100%;
    }
    #main-title {
        margin: 0.2rem 0;
    }
}
