:root {
    --pc-brand: #6f4cff;
    --pc-brand-600: #5b3ce6;
    --pc-line: #ece8ff;
    --pc-muted: #6b7280;
    --pc-card: #fff;
    --pc-shadow: 0 10px 30px rgba(24, 19, 56, .12);
    --pc-radius: 16px;
    --pc-radius-lg: 22px;
}

.pc-section {
    padding: 10px 0;
}

.pc-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.pc-title-xl h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.15;
    margin: 6px 0 12px;
    color: #664589;
}

.pc-subtitle {
    color: var(--pc-muted);
    font-size: clamp(15px, 1.9vw, 18px);
}

.pc-eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #472ec7;
}

.pc-card {
    background: var(--pc-card);
    border: 1px solid var(--pc-line);
    border-radius: var(--pc-radius);
    box-shadow: var(--pc-shadow);
    padding: 20px;
}

.pc-grid {
    display: grid;
    gap: 18px;
}

.pc-g2 {
    grid-template-columns: repeat(2, 1fr);
}

.pc-g3 {
    grid-template-columns: repeat(3, 1fr);
}

.pc-g4 {
    grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 820px) {

    .pc-g2,
    .pc-g3,
    .pc-g4 {
        grid-template-columns: 1fr;
    }
}

.pc-hero {
    border: 1px solid var(--pc-line);
    border-radius: var(--pc-radius-lg);
    box-shadow: var(--pc-shadow);
    padding: clamp(20px, 4vw, 42px);
    display: grid;
    grid-template-columns: 1.25fr .9fr;
    gap: clamp(18px, 4vw, 36px);
    background: #fff;
}

@media (max-width: 900px) {
    .pc-hero {
        grid-template-columns: 1fr;
    }
}

.pc-ring {
    aspect-ratio: 1/1;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background: conic-gradient(from 0deg,
            #ffad92 0 25%, #cbb8ff 0 50%, #d9a46b 0 75%, #9bd3ff 0 100%);
    border: 1px solid var(--pc-line);
}

.pc-ring::after {
    content: "";
    position: absolute;
    inset: 14%;
    background: radial-gradient(circle at 50% 50%, #fff 0 60%, transparent 60%);
    border-radius: 22px;
    box-shadow: inset 0 0 0 1px var(--pc-line);
}

.pc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid var(--pc-line);
}

.pc-badge.warm {
    background: #fff7ed;
    color: #b45309;
    border-color: #fed7aa;
}

.pc-badge.cool {
    background: #eef2ff;
    color: #3730a3;
    border-color: #c7d2fe;
}

.pc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.pc-chip {
    --c: #ddd;
    --label: "";
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--c);
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 2px 8px rgba(16, 16, 24, .12);
}

.pc-chip::after {
    content: var(--label);
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: var(--pc-muted);
    white-space: nowrap;
}

.pc-list {
    margin: 10px 0 0 0;
    padding: 0 0 0 18px;
    color: var(--pc-muted);
}

.pc-list li {
    margin: 6px 0;
}

.pc-cta {
    border: 1px dashed #dcd3ff;
    background: linear-gradient(180deg, #faf9ff 0%, #fff 100%);
    border-radius: var(--pc-radius);
    padding: 24px;
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 16px;
    align-items: center;
}

@media (max-width: 900px) {
    .pc-cta {
        grid-template-columns: 1fr;
    }
}

.pc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.pc-btn.primary {
    background: var(--pc-brand);
    color: #fff;
    box-shadow: 0 8px 18px rgba(111, 76, 255, .28);
}

.pc-btn.primary:hover {
    background: var(--pc-brand-600);
}

.pc-btn.ghost {
    background: #fff;
    border-color: var(--pc-line);
    color: #111;
}

.pc-btn.ghost:hover {
    background: #fbfaff;
    border-color: #d9d3ff;
}

.pc-mood-tag {
    border: 1px solid var(--pc-line);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 800;
    font-size: 13px;
    background: #fff;
}

.pc-mood-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, .08);
    vertical-align: middle;
    margin-right: 8px;
}

/* simple reveal */
.pc-reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .5s ease, transform .6s ease;
}

.pc-reveal.on {
    opacity: 1;
    transform: translateY(0);
}