/* ============================================================
   HERO.CSS — Hero / Landing Section
   ============================================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 90px 24px 50px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 70% at 50% 60%, rgba(15, 60, 120, 0.45) 0%, transparent 70%), var(--black);
}

/* Subtle grid overlay */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-bg-grid::before,
.hero-bg-grid::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transform: rotate(45deg);
    pointer-events: none;
}

.hero-bg-grid::before {
    left: 60px;
    top: 40%;
}

.hero-bg-grid::after {
    right: 60px;
    top: 35%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* --- Tagline --- */
.hero-tagline {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* --- Main Heading --- */
.hero-heading {
    font-size: clamp(2.2rem, 4.8vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
}

.hero-serif {
    font-family: 'Dancing Script', cursive;
    font-style: normal;
    font-weight: 700;
    font-size: 1.15em;
    background: linear-gradient(110deg, #ffffff 30%, #2F8BD4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 1.5px solid rgba(47, 139, 212, 0.45);
    padding: 4px 20px;
    border-radius: 6px;
    display: inline-block;
}

/* --- Subtext --- */
.hero-sub {
    font-size: 15px;
    color: var(--gray-light);
    max-width: 560px;
    margin: 0 auto 20px;
    line-height: 1.65;
}

/* --- Social Proof Row --- */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--black);
    margin-right: -10px;
    object-fit: cover;
}

.proof-text {
    font-size: 14px;
    color: var(--gray);
}

.proof-highlight {
    color: var(--orange);
    font-weight: 700;
}

/* --- CTA Button --- */
.btn-primary {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    transition: all 0.25s ease;
    margin-top: 8px;
    box-shadow: 0 8px 32px rgba(47, 139, 212, 0.35);
}

.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(47, 139, 212, 0.5);
}

/* --- Early Access line --- */
.hero-early-access {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

.early-access-row1 {
    display: flex;
    align-items: center;
    gap: 4px;
}

.early-access-row2 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.early-access-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

.early-access-text {
    color: var(--orange);
    font-weight: 700;
    border-bottom: 1.5px dashed rgba(47, 139, 212, 0.55);
    padding-bottom: 1px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
}
