:root{
    --qz-bg: #f4f6ff;
    --qz-white: #ffffff;
    --qz-text: #1b1f2a;

    --qz-primary: #5D5FEF;
    --qz-primary-2: #7C7EF7;
    --qz-primary-3: #5D5FEF;

    --qz-shadow: 0 14px 34px rgba(26, 36, 74, 0.10);
    --qz-shadow-soft: 0 10px 24px rgba(26, 36, 74, 0.08);

    --qz-radius-lg: 22px;
    --qz-radius-md: 16px;
}

.qz-page{
    background: var(--qz-bg);
    color: var(--qz-text);
    min-height: 100vh;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Hero (same vibe as screenshot) */
.qz-hero{
    background: linear-gradient(90deg, var(--qz-primary-3), var(--qz-primary-2));
    padding: 56px 18px 56px;
    margin: 70px 0;
}

.qz-hero-inner{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.qz-hero-title{
    margin: 0 0 10px;
    font-size: 3rem;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.qz-hero-subtitle{
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    line-height: 1.6;
}

/* Content "floating card" area */
.qz-content{
    padding: 18px 18px 56px;
    margin-top: -28px; /* floats into hero */
}

.qz-content-inner{
    max-width: 1100px;
    margin: 0 auto;
    background: var(--qz-white);
    border-radius: var(--qz-radius-lg);
    box-shadow: var(--qz-shadow);
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.8);
}

/* Grid */
.qz-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

/* Card */
.qz-card{
    background: var(--qz-white);
    border-radius: var(--qz-radius-lg);
    box-shadow: var(--qz-shadow-soft);
    border: 1px solid rgba(20, 24, 40, 0.08);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 150px;
}

.qz-card-title{
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.qz-card-actions{
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
}

/* Button (same style language) */
.qz-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    user-select: none;
    transition: transform .05s, box-shadow .2s, background .2s;
}

.qz-btn:active{ transform: translateY(1px); }

.qz-btn-primary{
    background: var(--qz-primary);
    color: #fff;
    box-shadow: 0 10px 22px rgba(95, 102, 246, 0.18);
}

.qz-btn-primary:hover{
    background: var(--qz-primary-2);
    box-shadow: 0 14px 26px rgba(95, 102, 246, 0.22);
}

/* Responsive */
@media (max-width: 980px){
    .qz-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px){
    .qz-content-inner{ padding: 14px; }
    .qz-grid{ grid-template-columns: 1fr; }
}