/* =========================================================
   Example Cards – Visual previews (FINAL)
   ========================================================= */

.examples {
    background: var(--bg-strong);
    padding: 96px 0;
}

.examples .container {
    max-width: 1200px;
}

.examples h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 64px;
    letter-spacing: -0.02em;
}

/* =========================================================
   Grid
   ========================================================= */

.example-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    justify-items: center;
}

/* =========================================================
   Base card
   ========================================================= */

.example {
    position: relative;
    width: 100%;
    max-width: 300px;
    min-height: 420px;

    padding: 32px 28px 56px;
    border-radius: 24px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;

    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);

    transition:
        transform 0.28s cubic-bezier(.4,0,.2,1),
        box-shadow 0.28s cubic-bezier(.4,0,.2,1);
}

.example:hover {
    transform: translateY(-8px);
    box-shadow: 0 60px 160px rgba(66,133,244,0.22);
}

.example::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.4),
        0 0 0 1px rgba(0,0,0,0.02);
}

/* ---------------------------------------------------------
   Theme backgrounds – DISTINCT SIGNATURES
   --------------------------------------------------------- */

.example {
    overflow: hidden;
}

/* Soft creative glow */
.example-creator {
    background:
        radial-gradient(120% 80% at 50% 0%, #ede9fe 0%, transparent 60%),
        linear-gradient(180deg, #ffffff, #f4f1ff);
}

/* Neon stage / music */
.example-music {
    background:
        radial-gradient(120% 80% at 50% -20%, rgba(66,133,244,0.35), transparent 60%),
        linear-gradient(180deg, #050b16, #1f2937);
    color: #ffffff;
}

/* Cold tech glass */
.example-dev {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.85), rgba(234,246,255,0.95)),
        repeating-linear-gradient(
            90deg,
            rgba(0,0,0,0.015) 0,
            rgba(0,0,0,0.015) 1px,
            transparent 1px,
            transparent 8px
        );
}

/* Premium business card */
.example-business {
    background:
        linear-gradient(180deg, #ffffff, #f3f6fa);
}

.example-business::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
    pointer-events: none;
}

/* Editorial / lifestyle */
.example-freelancer {
    background:
        radial-gradient(120% 80% at 50% 0%, #fde7f3 0%, transparent 55%),
        linear-gradient(180deg, #ffffff, #fdeff6);
}

/* Streamer energy */
.example-streamer {
    background:
        radial-gradient(120% 80% at 50% -10%, rgba(139,92,246,0.35), transparent 60%),
        linear-gradient(180deg, #f0fff8, #eafff4);
}

/* =========================================================
   Avatar / text
   ========================================================= */

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    margin-bottom: 8px;
}

.name {
    font-weight: 800;
    font-size: 16px;
    text-align: center;
}

.bio {
    font-size: 13px;
    color: var(--ink-soft);
    text-align: center;
    margin-bottom: 12px;
}

.example-music .bio {
    color: rgba(255,255,255,0.75);
}

/* =========================================================
   Links
   ========================================================= */

.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.link {
    width: 100%;
    max-width: 240px;
    height: 40px;

    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease;

    cursor: pointer;
    user-select: none;
}

/* Link accents */

.example-creator .link {
    background: rgba(0,0,0,0.06);
    color: #111827;
}

.example-creator .link:hover {
    background: rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.example-music .link {
    background: linear-gradient(90deg, #4285f4, #34a853);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(66,133,244,0.35);
}

.example-music .link:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.1);
}

.example-dev .link {
    background: rgba(59,130,246,0.12);
    color: #0369a1;
    border: 1px solid rgba(59,130,246,0.25);
}

.example-dev .link:hover {
    background: rgba(59,130,246,0.18);
}

.example-business .link {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111827;
}

.example-business .link:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.example-freelancer .link {
    background: rgba(236,72,153,0.12);
    color: #9d174d;
}

.example-freelancer .link:hover {
    background: rgba(236,72,153,0.18);
}

.example-streamer .link {
    background: linear-gradient(90deg, #8b5cf6, #22c55e);
    color: #ffffff;
    box-shadow: 0 8px 28px rgba(139,92,246,0.4);
}

.example-streamer .link:hover {
    transform: translateY(-2px) scale(1.04);
}

/* =========================================================
   Bottom meta label
   ========================================================= */

.example-meta {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;

    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
}

.example-music .example-meta {
    color: rgba(255,255,255,0.75);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px) {
    .example-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .example-grid {
        grid-template-columns: 1fr;
    }
}