/* ── Snazzle Home ────────────────────────────────────────────── */
:root {
    --navy:     #0d1452;
    --navy-d:   #090e3c;
    --navy-l:   #161f6e;
    --gold:     #f7b733;
    --gold-dk:  #d99c1f;
    --lav:      #c9aef0;
    --sky:      #a7cdf6;
    --cream:    #f4f2ff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(ellipse at 30% 15%, var(--navy-l) 0%, var(--navy) 50%, var(--navy-d) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: var(--cream);
}

/* ── Background sparkle shapes (from logo motif) ─────────────── */
.bg-star {
    position: absolute;
    width: 32px;
    height: 32px;
    clip-path: polygon(50% 0%,60% 40%,100% 50%,60% 60%,50% 100%,40% 60%,0% 50%,40% 40%);
    opacity: 0.7;
    pointer-events: none;
}
.bg-star--lav { background: var(--lav); }
.bg-star--sky  { background: var(--sky); }

.bg-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    opacity: 0.75;
    pointer-events: none;
}

/* ── Hero layout ─────────────────────────────────────────────── */
.hero {
    text-align: center;
    padding: 2rem 1.5rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.hero-logo {
    width: min(380px, 78vw);
    height: auto;
    border-radius: 22px;
}

/* ── Directory heading ───────────────────────────────────────── */
.dir-heading {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
}

.dir-line1 {
    display: block;
    font-size: clamp(1rem, 4.5vw, 1.65rem);
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--sky);
    white-space: nowrap;
    text-align: center;
}

/* DIRECTORY letters spread to match the width of line 1 */
.dir-line2 {
    display: flex;
    justify-content: space-between;
    font-size: clamp(1rem, 4.5vw, 1.65rem);
    font-weight: 800;
    color: var(--sky);
}

/* ── Tagline ─────────────────────────────────────────────────── */
.tagline {
    font-size: clamp(0.9rem, 3.2vw, 1.1rem);
    font-weight: 400;
    color: var(--sky);
    opacity: 0.92;
    letter-spacing: 0.01em;
}

.tagline .gold {
    color: var(--gold);
    font-weight: 700;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.hero-btns {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.7rem;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    text-decoration: none;
    display: inline-block;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
    background: var(--gold);
    color: var(--navy-d);
    box-shadow: 0 5px 0 var(--gold-dk);
}
.btn-gold:hover { box-shadow: 0 7px 0 var(--gold-dk); }

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline:hover { background: rgba(255,255,255,0.07); }

@media (max-width: 480px) {
    .hero-btns { flex-direction: column; align-items: center; }
    .btn { width: 260px; text-align: center; }
}
