/* ==========================================================================
   The Bond Echo — Landing Page Styles
   Background: #1a1a1a | Primary: #e88102 | Body text: #e0e0e0 or #FEDFB8 or #FFF3E6
   ========================================================================== */

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

html, body {
    height: 100%;
}

body {
    background-color: #1a1a1a;
    color: #FFF3E6;
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem;
    text-align: center;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    width: 100%;
}

.eyebrow {
    font-size: 1rem;
    font-style:;
    letter-spacing: ;
    text-transform:;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.title {
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    font-weight: 700;
    font-style: italic;
    color: #e88102;
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin-bottom: 2rem;
}

.status {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #FEDFB8;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(232, 129, 2, 0.4);
    display: inline-block;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer {
    font-size: 0.85rem;
    color: #e0e0e0;
    opacity: 0.6;
    padding-top: 2rem;
}

.footer p {
    margin: 0;
}

/* Smaller screens */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem;
    }

    .eyebrow {
        font-size: 0.85rem;
        letter-spacing: 0.12em;
    }

    .status {
        letter-spacing: 0.25em;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}
