/* placeholder.css — styles for the coming-soon holding page (index.html).
   Externalised from an inline <style> block to comply with the fleet CSP
   (style-src 'self' https://cdn.aptient.com/; no unsafe-inline). */

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

body {
    background: #0c1018;
    color: #e2e9f7;
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
    display: grid;
    grid-template-rows: 1fr auto;
    background-image:
        linear-gradient(rgba(45, 127, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 127, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e2e9f7;
    margin-bottom: 3.5rem;
}

.eyebrow {
    display: inline-block;
    padding: 0.28rem 0.85rem;
    background: rgba(45, 127, 255, 0.1);
    border: 1px solid rgba(45, 127, 255, 0.25);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2d7fff;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    max-width: 680px;
    margin-bottom: 1.5rem;
}

.lead {
    color: #7e95b8;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 3rem;
}

.features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
    max-width: 680px;
}

.feature {
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid #2d3f5e;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #7e95b8;
    white-space: nowrap;
}

.cta {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #2d7fff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.93rem;
    font-weight: 600;
    transition: background 0.15s ease;
}
.cta:hover { background: #1a6be5; }

footer {
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid #1a2438;
    font-size: 0.78rem;
    color: #2d3f5e;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-link { color: #4ab0ff; }

@media (max-width: 480px) {
    .features { gap: 0.6rem; }
}
