/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    background: radial-gradient(circle at top center, rgba(68, 36, 168, .05) 0%, transparent 45%),
        linear-gradient(180deg, #f7f7f8 0%, #efeff2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

/* Gradient glow behind building */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 70%, rgba(255, 107, 107, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 30% 30%, rgba(168, 197, 160, 0.06) 0%, transparent 60%);
}

/* Stars */
.stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    border-radius: 50%;
    background: var(--coral);
    opacity: 0;
    animation: twinkle var(--d, 3s) var(--delay, 0s) infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: var(--op, 0.5);
    }
}



@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero-headline {
    font-size: clamp(42px, 7vw, 88px);
    font-weight: 800;
    color: var(--coral);
    text-align: center;
    line-height: 1.05;
    letter-spacing: -2.5px;
    max-width: 900px;
    margin-bottom: 24px;
}


.hero-headline em {
    font-style: normal;
    background: linear-gradient(135deg, #4A4AC4, var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.hero-sub {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--muted);
    text-align: center;
    max-width: 520px;
    line-height: 1.65;
    font-weight: 400;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 72px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral), var(--coral2));
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(255, 107, 107, 0.4);
}

.btn-ghost {
    background: var(--white);
    color: var(--coral2);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ─── BUILDING ─── (SIGNATURE ELEMENT) */
.building-wrap {
    position: relative;
    width: 100%;
    max-width: 680px;
}

.building-svg-wrap {
    width: 100%;
}

/* building base svg styling */
.building-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.6));
}

/* Window glow effect */
.win {
    transition: fill 0.6s, filter 0.6s;
    cursor: default;
}

.win.lit {
    filter: drop-shadow(0 0 6px var(--glow, rgba(255, 220, 100, 0.8)));
}

/* floating pills */
.float-pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(20, 27, 38, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 18px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    animation: floatup 6s ease-in-out infinite;
}

.float-pill .icon {
    font-size: 18px;
}

.float-pill small {
    font-size: 11px;
    font-weight: 400;
    color: var(--muted);
    display: block;
}

.pill-1 {
    top: 10%;
    left: -8%;
    animation-delay: 0s;
}

.pill-2 {
    top: 32%;
    right: -18%;
    animation-delay: 1.5s;
}

.pill-3 {
    bottom: 22%;
    left: -20%;
    animation-delay: 3s;
}

@keyframes floatup {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}