/* ============================================
   HAWAYA LOVERS — PREMIUM COMMUNITY PAGE
   ============================================ */

/* ── HERO — full dark with heartbeat glow ─── */
.hl-hero {
    min-height: 100vh;
    background: #07111e;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 clamp(32px, 6vw, 100px) clamp(60px, 8vh, 100px);
    position: relative;
    overflow: hidden;
}

/* Animated heart orbs */
.hl-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: hlOrbPulse var(--dur, 8s) ease-in-out var(--delay, 0s) infinite alternate;
}

.hl-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(209,77,70,0.2) 0%, transparent 65%);
    top: -200px; right: -100px;
    --dur: 10s; --delay: 0s;
}

.hl-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(150,60,200,0.12) 0%, transparent 65%);
    bottom: -100px; left: 10%;
    --dur: 14s; --delay: -4s;
}

@keyframes hlOrbPulse {
    from { transform: scale(0.9) translate(0,0); opacity: 0.7; }
    to   { transform: scale(1.15) translate(30px, -20px); opacity: 1; }
}

/* Giant watermark text */
.hl-hero::before {
    content: 'LOVE';
    position: absolute;
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(120px, 22vw, 280px);
    color: rgba(209,77,70,0.04);
    bottom: -30px; right: 0;
    letter-spacing: -0.06em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
    max-width: 100%;
    clip-path: inset(0);
}

.hl-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hl-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUpHL 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}

.hl-hero-eyebrow::before {
    content: ''; width: 32px; height: 1.5px; background: var(--coral);
}

.hl-hero h1 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(4rem, 9vw, 9rem);
    color: white;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUpHL 0.9s cubic-bezier(0.16,1,0.3,1) 0.35s forwards;
}

.hl-hero h1 em {
    font-style: normal;
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px var(--coral);
}

.hl-hero p {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: rgba(255,255,255,0.4);
    max-width: 500px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUpHL 0.9s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}

/* Coming soon badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 100px;
    background: rgba(209,77,70,0.1);
    border: 1px solid rgba(209,77,70,0.3);
    color: rgba(255,120,120,1);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    animation: pulseBadge 3s ease-in-out infinite;
    opacity: 0;
    animation: pulseBadge 3s ease-in-out infinite, fadeUpHL 0.8s ease 0.7s forwards;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(209,77,70,0.25); }
    50% { box-shadow: 0 0 0 14px rgba(209,77,70,0); }
}

.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--coral);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ── CARD SECTION — luxury dark card ─────────── */
.hl-card-section {
    background: #0a1525;
    padding: clamp(80px, 10vh, 130px) clamp(24px, 5vw, 80px);
    position: relative;
    overflow: hidden;
}

.hl-card-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(209,77,70,0.08) 0%, transparent 65%);
    top: -100px; left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.hl-card-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hl-card-section .section-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hl-card-section .section-tag::before,
.hl-card-section .section-tag::after {
    content: ''; width: 32px; height: 1.5px; background: var(--coral); opacity: 0.5;
}

.hl-card-section h2 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: white;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hl-card-section > .hl-card-wrapper > p {
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    margin-bottom: 56px;
    line-height: 1.7;
}

/* The loyalty card itself */
.stamp-card {
    background: linear-gradient(145deg, #12233e 0%, #1e3a6b 50%, #0f1f3a 100%);
    border-radius: 32px;
    padding: clamp(32px, 4vw, 56px);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 40px 100px -20px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.07);
}

/* Shimmer gradient overlay */
.stamp-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(209,77,70,0.18) 0%, transparent 70%);
    pointer-events: none;
}

/* Mesh grid texture */
.stamp-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    border-radius: 32px;
}

.stamp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.stamp-card-header h3 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: white;
}

.stamp-card-header .card-chip {
    width: 44px; height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,215,0,0.5), rgba(255,215,0,0.2));
    border: 1px solid rgba(255,215,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stamp-counter {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.stamp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.stamp-slot {
    aspect-ratio: 1;
    border-radius: 20px;
    border: 2px dashed rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    background: rgba(255,255,255,0.02);
    position: relative;
}

.stamp-slot:hover {
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    transform: scale(1.06);
}

.stamp-slot.stamped {
    border-style: solid;
    border-color: var(--coral);
    background: rgba(209,77,70,0.15);
    animation: stampPop 0.45s cubic-bezier(0.16,1,0.3,1);
}

.stamp-slot.stamped::after {
    content: '💜';
    font-size: 22px;
}

.stamp-slot.reward {
    border-color: rgba(255,215,0,0.2);
    background: rgba(255,215,0,0.03);
}

.stamp-slot.reward::before {
    content: '🎁';
    font-size: 18px;
    opacity: 0.4;
}

.stamp-slot.reward.stamped {
    border-color: gold;
    background: rgba(255,215,0,0.18);
}

.stamp-slot.reward.stamped::before { display: none; }
.stamp-slot.reward.stamped::after { content: '🎁'; }

@keyframes stampPop {
    0%   { transform: scale(0.4) rotate(-10deg); }
    60%  { transform: scale(1.2) rotate(4deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.stamp-card-footer {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.stamp-card-footer strong { color: rgba(255,120,120,0.9); }

/* ── HOW IT WORKS — premium numbered steps ─── */
.hl-how {
    background: var(--blush);
    padding: clamp(80px, 10vh, 130px) clamp(24px, 5vw, 80px);
    position: relative;
    overflow: hidden;
}

.hl-how::before {
    content: '03';
    position: absolute;
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 400px;
    color: rgba(13,48,90,0.025);
    bottom: -100px; right: -40px;
    line-height: 1;
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
}

.hl-how-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hl-how-label::before {
    content: ''; width: 32px; height: 1.5px; background: var(--coral);
}

.hl-how h2 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 4.5vw, 5rem);
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 64px;
    max-width: 600px;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.how-step {
    background: white;
    border-radius: 28px;
    padding: clamp(32px, 3.5vw, 56px) clamp(24px, 3vw, 40px);
    border: 1px solid rgba(13,48,90,0.05);
    transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
}

.how-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.how-step:hover::before { transform: scaleX(1); }

.how-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px -14px rgba(13,48,90,0.14);
}

.how-step-num {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 5vw, 5rem);
    color: rgba(13,48,90,0.06);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.how-step h3 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 12px;
}

.how-step p {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
}

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUpHL {
    to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
    .hl-hero { padding: 0 24px 60px; min-height: 85vh; }
    .hl-hero h1 { font-size: clamp(3.5rem, 14vw, 6rem); }
    .hl-card-section { padding: 60px 20px; }
    .stamp-grid { gap: 8px; }
    .stamp-card { padding: 28px 20px; }
    .hl-how { padding: 60px 20px; }
    .how-steps { grid-template-columns: 1fr; gap: 16px; }
}
