@charset "UTF-8";

/* ── 소형 모바일 오버플로우 방지 ── */
@media (max-width: 480px) {
    .pain-grid { grid-template-columns: 1fr; }
    .pain-cta p { font-size: 16px; }
    .gauge-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
    .gauge-wrap { width: 130px; height: 74px; }
    .gauge-svg { width: 130px; height: 74px; }
    .gauge-num { font-size: 20px; }
    .meaning-grid { grid-template-columns: 1fr; }
    .connect-grid { grid-template-columns: 1fr; }
    .section-title { font-size: clamp(22px, 6vw, 34px); }
    .section-sub { font-size: 15px; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes bounceY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ── SECTION COMMON ── */
.section-label {
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--main-color); margin-bottom: 16px;
}
.section-title {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 800; line-height: 1.25;
    letter-spacing: -0.02em; margin-bottom: 20px; color: #0a0e1a;
    word-break: keep-all; overflow-wrap: break-word;
}
.section-sub {
    font-size: 16px; color: #666; line-height: 1.7; max-width: 560px;
    word-break: keep-all; overflow-wrap: break-word;
}

/* ── PAIN ── */
.pain { background: #fff; }
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px; margin-top: 60px;
}
.pain-card {
    background: #F4F6FA; border-radius: 16px; text-align:center;
    padding: 36px 32px; border: 1px solid #e8ecf3;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.pain-icon {
    width: 80px; height: 80px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px auto;
    transition: transform 0.3s ease;
}
.pain-icon img { width: 80px; height: 80px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,102,255,0.3)); }
.pain-card:hover .pain-icon { transform: scale(1.08) translateY(-2px); }
.pain-card h3 {
    font-size: var(--fs-label-sub); font-weight: 700; color: #0a0e1a;
    margin-bottom: 12px; line-height: 1.4; word-break: keep-all;
}
.pain-card p {font-size: var(--fs-desc-sub);color: #666; word-break: keep-all; }
.pain-cta {
    margin-top: 4rem; text-align: center; padding: 40px;
    background: linear-gradient(135deg, rgba(0,102,255,0.05), rgba(0,242,255,0.05));
    border: 1px solid rgba(0,102,255,0.15); border-radius: 20px;
}
.pain-cta p { font-size: var(--fs-label-sub); font-weight: 700; color: #0a0e1a; line-height: 1.5; }
.pain-cta span { color: var(--main-color); }

/* ── WHAT IS WPI ── */
.what { background: #F4F6FA; }
.what-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
@media (max-width: 768px) {
    .what-inner { grid-template-columns: 1fr; gap: 40px; }
}
.what-def {
    background: #fff; border-radius: 20px; padding: 40px;
    border: 1px solid #e0e6f0; position: relative;
}
.what-def::before {
    content: '"'; position: absolute; top: 20px; left: 28px;
    font-size: 80px; color: var(--main-color); opacity: 0.15;
    line-height: 1;
}
.what-def p { font-size:var(--fs-desc-sub);color: #444; position: relative; z-index: 1; word-break: keep-all; }
.what-features { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.what-feat { display: flex; align-items: flex-start; gap: 16px; }
.feat-dot {
    width: 64px; height: 64px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feat-dot.blue { background: rgba(0,102,255,0.08); }
.feat-dot.cyan { background: rgba(0,242,255,0.08); }
.feat-dot.green { background: rgba(0,232,122,0.08); }
.feat-dot img { filter: drop-shadow(0 3px 8px rgba(0,150,255,0.35)); }
.what-feat:hover .feat-dot { transform: scale(1.1) rotate(-4deg); box-shadow: 0 8px 24px rgba(0,102,255,0.2); }
.feat-text h4 { font-size: var(--fs-label-sub); font-weight: 700; color: #0a0e1a; margin-bottom: 4px; }
.feat-text p { font-size: var(--fs-desc-sub);color: #666; line-height: 1.6; }

/* What 우측 OS 패널 */
.wos-panel {
    background: #0A0E1A; border-radius: 24px; padding: 2rem;
    position: relative; overflow: hidden;
}
.wos-panel::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(0,102,255,0.15) 0%, transparent 70%);
}
.wos-label {
    font-weight: 700; letter-spacing: 0.1em;
    color: var(--main-color-cyan); text-transform: uppercase; margin-bottom: 24px;
}
.wos-items { display: flex; flex-direction: column; gap: 10px; }
.wos-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; padding: 1.5rem 2rem;
    display: flex; align-items: center; gap: 14px;
}
.wos-item.active {
    background: rgba(0,102,255,0.12);
    border-color: rgba(0,102,255,0.3);
}
.wos-item > div:not(.wos-icon) { flex: 1; min-width: 0; }
.wos-icon {
    width: 56px; height: 56px; border-radius: 8px;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wos-item.active .wos-icon { background: rgba(0,102,255,0.2); }
.wos-info-title {
    font-size:var(--fs-label-sub);font-weight: 700; color: #fff; margin-bottom: 2px;
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.wos-item.active .wos-info-title { color: var(--main-color-cyan); }
.wos-info-title .here-badge{font-size:0.75rem;font-weight:700;color:#0ff;background:rgba(0,242,255,0.1);border:1px solid rgba(0,242,255,0.3);border-radius:100px;padding:2px 10px;white-space:nowrap;font-family:'Inter',sans-serif;letter-spacing:0.04em;animation:os-here-nudge 2s linear infinite;flex-shrink:0;}
.wos-info-sub { font-size:var(--fs-desc-sub);color: #8B95A8; }
.wos-item.active .wos-info-sub { color: rgba(0,242,255,0.6); }

/* ── GAUGES — SEMICIRCLE ── */
.gauges {
    background: #0A0E1A; position: relative; overflow: hidden;
}
.gauges::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,102,255,0.06) 0%, transparent 70%);
}
.gauges .container { position: relative; z-index: 2; }
.gauges-header { text-align: center; margin-bottom: 80px; }
.gauges-header .section-label { color: var(--main-color-cyan); }
.gauges-header .section-title { color: #fff; }
.gauges-header .section-sub { color: #8B95A8; margin: 0 auto; text-align: center; }

.live-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(0,232,122,0.12); border: 1px solid rgba(0,232,122,0.25);
    border-radius: 100px; padding: 4px 12px; margin: -6px 0 0 10px;
    font-size: 11px; font-weight: 700; color: var(--greenlight);
    letter-spacing: 0.1em; vertical-align: middle;
}
.live-dot {
    width: 6px; height: 6px; background: var(--greenlight);
    border-radius: 50%; animation: pulse 1.5s infinite;
}

.gauge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 56px 24px;
}
/* 2행 3개 → 가운데 정렬 */
.gauge-item:nth-child(5) { grid-column: 1; }
.gauge-item:nth-child(6) { grid-column: 2; }
.gauge-item:nth-child(7) { grid-column: 3; }
@media (max-width: 1000px) {
    .gauge-grid { grid-template-columns: repeat(3, 1fr); }
    .gauge-item:nth-child(5),
    .gauge-item:nth-child(6),
    .gauge-item:nth-child(7) { grid-column: auto; }
}
@media (max-width: 700px) {
    .gauge-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
    .gauge-item:nth-child(7) { grid-column: 1 / 3; justify-self: center; width: 50%; }
}
@media (max-width: 420px) {
    .gauge-grid { grid-template-columns: 1fr; }
    .gauge-item:nth-child(7) { grid-column: auto; width: 100%; }
}

.gauge-item { display: flex; flex-direction: column; align-items: center; }

/* 반원 게이지 */
.gauge-wrap {
    position: relative; width: 160px; height: 90px; /* 반원이므로 height = width/2 */
    overflow: visible;
}
.gauge-svg {
    width: 160px; height: 90px;
    overflow: visible;
}
/* 반원 arc: cx=80, cy=80(하단 기준점), r=68 → 반원 위쪽 호 */
/* stroke-dasharray 계산: 반원 둘레 = π * r = 3.14159 * 68 ≈ 213.6 */

.gauge-track {
    fill: none; stroke: rgba(255,255,255,0.07); stroke-width: 10;
    stroke-linecap: round;
}
.gauge-fill {
    fill: none; stroke-width: 10; stroke-linecap: round;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}
.gauge-fill.blue { stroke: var(--main-color); filter: drop-shadow(0 0 6px rgba(0,102,255,0.7)); }
.gauge-fill.cyan { stroke: var(--main-color-cyan); filter: drop-shadow(0 0 6px rgba(0,242,255,0.6)); }
.gauge-fill.green { stroke: var(--greenlight); filter: drop-shadow(0 0 6px rgba(0,232,122,0.6)); }
.gauge-fill.orange { stroke: #ff8800; filter: drop-shadow(0 0 6px rgba(255,136,0,0.6)); }

.gauge-center {
    position: absolute; bottom: -10px; left: 0; right: 0;
    display: flex; flex-direction: column; align-items: center;
}
.gauge-num {
    font-size: 26px; font-weight: 800;
    letter-spacing: -0.02em; line-height: 1;
}
.gauge-num.blue { color: #60a5ff; }
.gauge-num.cyan { color: var(--main-color-cyan); }
.gauge-num.green { color: var(--greenlight); }
.gauge-num.orange { color: #ffaa44; }
.gauge-num sup { font-size: 13px; font-weight: 600; vertical-align: super; }

.gauge-num .pending {
    font-size: 13px; font-weight: 600; color: #8B95A8; letter-spacing: 0;
}
.gauge-unit { font-size: 12px; color: #8B95A8; font-weight: 500; margin-top: 2px; }

.gauge-info { margin-top: 22px; text-align: center; }
.gauge-info h3 { font-size:var(--fs-label-sub);font-weight: 700; color: #fff; margin-bottom: 4px; }
.gauge-info p { font-size:var(--fs-desc-sub);color: #8B95A8; line-height: 1.5; }
.gauge-tag {
    display: inline-block; margin-top: 6px;
    font-size: 0.875rem; font-weight: 500; letter-spacing: 0.06em;
    padding: 2px 9px; border-radius: 100px;
}
.gauge-tag.high { background: rgba(0,102,255,0.15); color: #60a5ff; }
.gauge-tag.high.cyan { background: rgba(0,242,255,0.12); color: var(--main-color-cyan); }
.gauge-tag.low { background: rgba(0,232,122,0.12); color: var(--greenlight); }

.gauges-note {
    margin-top: 60px; text-align: center; padding: 20px 28px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06); border-radius: 12px;
}
.gauges-note p { color: #fff; line-height: 1.9; }
.gauges-note span {color:rgba(255,255,255,0.7);}

/* ── MEANING ── */
.meaning { background: #fff; }
.meaning-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px; margin-top: 60px;
}

.meaning-img {
    padding: 5rem 0;
    text-align: center;
}
.meaning-img .meaning-img-inner {
    position: relative;
    line-height:0;
    padding: 3rem;
}
.meaning-img .meaning-img-inner::before,
.meaning-img .meaning-img-inner::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: transparent;
    pointer-events: none;
}
/* 좌상단 ㄱ자 */
.meaning-img .meaning-img-inner::before {
    top: 0;
    left: 0;
    border-top: 4px solid #3ba3fd;
    border-left: 4px solid #3ba3fd;
}
/* 우하단 ㄱ자 (180도 회전) */
.meaning-img .meaning-img-inner::after {
    bottom: 0;
    right: 0;
    border-bottom: 4px solid #3ba3fd;
    border-right: 4px solid #3ba3fd;
}
.meaning-img .meaning-img-inner img {width:100%;max-width:100%;}
.meaning-img .cm-guide-label {
    bottom: 68px;
    right: 68px;
}

@media (max-width: 768px) {
    .meaning-grid { grid-template-columns: 1fr; }
    .meaning-img {padding:3rem 0;}
    .meaning img {max-width:100%;}
    .meaning-img .meaning-img-inner {
        padding: 1rem;
    }
    .meaning-img .meaning-img-inner::before,
    .meaning-img .meaning-img-inner::after {
        width: 30px;
        height: 30px;
    }
    .meaning-img .cm-guide-label {
        bottom: 30px;
        right: 30px;
    }
}

.meaning-card {
    border-radius: 20px; padding: 40px 32px; text-align:center;
    border: 1px solid #e0e6f0; transition: all 0.3s;
}
.meaning-card:hover {
    border-color: var(--main-color);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,102,255,0.08);
}
.meaning-num {
    font-size: 48px; font-weight: 900;
    background: linear-gradient(135deg, var(--main-color), var(--main-color-cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1; margin-bottom: 16px; letter-spacing: -0.03em;
}
.meaning-card h3 { font-size: var(--fs-label-sub); font-weight: 700; color: #0a0e1a; margin-bottom: 12px; word-break: keep-all; }
.meaning-card p { font-size: var(--fs-desc-sub);color: #666; word-break: keep-all; }

/* ── STORY ── */
.story {
    background:#111827;
    position: relative; overflow: hidden;
}
.story::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,102,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.story-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
@media (max-width: 768px) { .story-inner { grid-template-columns: 1fr; gap: 40px; } }
.story-text .section-label { color: var(--main-color-cyan); }
.story-text .section-title { color: #fff; }
.story-quotes { display: flex; flex-direction: column; gap: 14px; padding: 2rem 0; }
.story-quote {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border-left: 3px solid rgba(255,255,255,0.1);
    border-radius: 0 8px 8px 0;
}
.story-quote.accent { border-left-color: var(--main-color); }
.story-quote p { font-size:var(--fs-desc-sub);color: rgba(255,255,255,0.7); line-height: 1.6;word-break: keep-all; }
.story-conclusion {
    font-size: var(--fs-desc-sub); color: #fff; font-weight: 600; line-height: 1.7; margin-top: 24px;
    word-break: keep-all; overflow-wrap: break-word;
}
.story-conclusion span { color: var(--main-color-cyan); }
.story-visual { display: flex; flex-direction: column; gap: 14px; }
.story-vis-card {
    background: linear-gradient(160deg, #062052, #08308d);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px; padding: 2.8rem 1.5rem;
    display: flex; align-items: center; gap: 16px;
}
.vis-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: transform 0.3s ease;
    overflow: hidden;
}
.vis-icon img { filter: drop-shadow(0 3px 10px rgba(96,165,255,0.4)); width:56px; height:56px; object-fit:contain; }
.story-vis-card:hover .vis-icon { transform: scale(1.1) translateY(-2px); }
.vis-text h4 { font-size: var(--fs-label-sub); font-weight: 700; color: #fff; margin-bottom: 4px; }
.vis-text p { font-size: var(--fs-desc-sub);color: #8B95A8; }

/* ── DIFF TABLE ── */
.diff { background: #fff; }
.diff-table-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}
.diff-table {
    width: 100%; border-collapse: collapse;
}
.diff-table th {
    padding: 20px 24px; font-weight: 700; text-align: center;
}

.diff-table th.col-general {
    background: #f4f6fa; color: #666; border-bottom: 2px solid #e0e6f0;
}
.diff-table th.col-wekeep {
    background: var(--main-color); color: #fff; border-bottom: 2px solid #0052cc;
    position: relative;
}
.diff-table th.col-wekeep::before {
    content: '→';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #0052cc;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,82,204,0.45);
    z-index: 1;
}
.diff-table td {
    padding: 18px 24px; border-bottom: 1px solid #f0f3f8;
}
.diff-table td:first-child { font-weight: 600; color: #333; background: #fafbfd; }
.diff-table td.general { color: #666; text-align: center; background: #fff; }
.diff-table td.wekeep { color: #0052cc; font-weight: 600; text-align: center; background: rgba(0,102,255,0.03); }
.diff-table tr:last-child td { border-bottom: none; }
@media (max-width: 600px) {
    .diff-table th, .diff-table td { padding: 14px 12px; font-size: 13px; }
}

/* ── FMR ── */
.fmr { background: #F4F6FA; }
.fmr-inner {
    background: #fff; border-radius: 24px; padding: 60px;
    border: 1px solid #e0e6f0; text-align: center;
}
@media (max-width: 600px) { .fmr-inner { padding: 40px 24px; } }
.fmr-flow {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; flex-wrap: wrap; margin: 48px 0;
}
.flow-step {
    background: #F4F6FA; border-radius: 12px; padding: 3rem 1rem;
    text-align: center; border: 1px solid #e0e6f0; flex: 1; min-width: 0;
}
.flow-step h4 { font-size: var(--fs-label-sub); font-weight: 700; color: var(--main-color); margin-bottom: 4px; }
.flow-step p { font-size: var(--fs-desc-sub);color: #666; line-height: 1.5; }
.flow-arrow { font-size: 18px; color: var(--main-color); opacity: 0.5; }
@media (max-width: 1024px) {
    .flow-step { flex: none; width: calc(50% - 6px); box-sizing: border-box; }
    .flow-arrow { display: none; }
}
@media (max-width: 768px) {
    .flow-step { width: 100%; }
    .flow-arrow { display: block; transform: rotate(90deg); width: 100%; text-align: center; }
}
.fmr-cta-text {
    font-size: 17px; color: #444; line-height: 1.7;
    max-width: 500px; margin: 0 auto 32px; word-break: keep-all;
}
.fmr-cta-text strong { font-size:var(--fs-label);color: var(--main-color); }

/* ── CONNECT ── */
.connect { background: #EEF1F8; }
.connect-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 48px;
}
@media (max-width: 768px) { .connect-grid { grid-template-columns: 1fr; } }
.connect-card {
    background: #fff; border-radius: 16px; padding: 2.5rem 1.5rem;
    border: 1px solid #e0e6f0;
    display: flex; align-items: center; justify-content: space-between;
    text-decoration: none; color: inherit; transition: all 0.3s; cursor: pointer;
}
.connect-card:hover {
    border-color: var(--main-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,102,255,0.1);
}
.connect-card-left { display: flex; align-items: center; gap: 16px; }
.connect-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(0,102,255,0.06);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: transform 0.3s ease;
}
.connect-icon img { filter: drop-shadow(0 3px 8px rgba(0,102,255,0.3)); }
.connect-card:hover .connect-icon { transform: scale(1.08); }
.connect-text h4 { font-size: 1rem; font-weight: 700; color: #0a0e1a; margin-bottom: 4px; }
.connect-text p { font-size: 0.875rem; color: #666; }
.connect-arrow { font-size: 18px; color: var(--main-color); opacity: 0.6; transition: transform 0.3s; }
.connect-card:hover .connect-arrow { transform: translateX(4px); opacity: 1; }

/* pain-card 슬라이드인 */
.pain-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,102,255,0.08);
}

/* fmr flow-step 진입 애니메이션 */
.flow-step {
    transition: transform 0.3s ease, background 0.3s ease;
}
.flow-step:hover {
    transform: translateY(-4px);
    background: rgba(0,102,255,0.12);
}
.flow-arrow {
    transition: transform 0.3s ease, color 0.3s ease;
}
.fmr-flow:hover .flow-arrow {
    color: var(--main-color-cyan);
}

/* CTA 버튼 pulse glow */
.btn-primary {
    animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,102,255,0); }
    50% { box-shadow: 0 0 24px 4px rgba(0,102,255,0.35); }
}

/* diff-table row hover 강화 */
.diff-table tbody tr {
    transition: background 0.2s ease;
}
.diff-table tbody tr:hover td {
    background: rgba(0,102,255,0.1);
}
.diff-table tbody tr:hover td.wekeep {
    background: rgba(0, 102, 255, 0.1);
}

/* gauge-item hover */
.gauge-item {
    transition: transform 0.3s ease;
}
.gauge-item:hover {
    transform: translateY(-4px);
}

/* story-vis-card hover */
.story-vis-card {
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.story-vis-card:hover {
    transform: translateX(6px);
    border-color: rgba(96,165,255,0.25);
}

/* WPI 7대 핵심 지표 */
.wpi-section {background:#F4F6FA;}
.wpi-section .wpi-rail-wrap { position:relative;}
.wpi-section .wpi-rail { position:absolute; left:4%; right:4%; top:50%; height:3px;
    background:linear-gradient(90deg, rgba(37,99,235,0), rgba(37,99,235,.35) 12%, rgba(37,99,235,.35) 88%, rgba(37,99,235,0)); }
.wpi-section .wpi-chips { position:relative; display:flex; justify-content:space-between; gap:12px; }
.wpi-section .wpi-chip {
    flex:1; max-width:168px; background:#fff; border:1.5px solid #E2E8F0; border-radius:16px;
    padding:20px 8px 18px; text-align:center; cursor:pointer; position:relative;
    box-shadow:0 8px 22px rgba(15,23,42,.07);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.wpi-section .wpi-chip .ic { font-size:34px; line-height:1; transition:transform .25s ease; }
.wpi-section .wpi-chip .ic img {max-width:100%;height:40px;}
.wpi-section .wpi-chip .lb { margin-top:5px; font-size:var(--fs-desc-sub); font-weight:700; color:#1E293B; letter-spacing:-0.5px; }
.wpi-section .wpi-chip:hover,
.wpi-section .wpi-chip.active {
    transform:translateY(-4px) scale(1.04);
    border-color:#2563EB;
    box-shadow:0 18px 40px rgba(37,99,235,.22);
    z-index:2;
}
.wpi-section .wpi-dash { padding-top:5rem; display:grid; }
.wpi-section .wpi-dash-panel { grid-area: 1 / 1; opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.wpi-section .wpi-dash-panel.active { opacity: 1; pointer-events: auto; }
.wpi-section .wpi-dash img { width:100%; max-width:100%; }
.wpi-section .wpi-desc {position:relative;height:70px;}

@media (max-width: 768px) {
    .wpi-section .wpi-dash {padding-top:3rem;}
    .wpi-section .wpi-rail { display: none; }
    .wpi-section .wpi-chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .wpi-section .wpi-chip { max-width: none; padding: 14px 6px 12px; }
    .wpi-section .wpi-chip:nth-child(5) { grid-column: 1; }
    .wpi-section .wpi-chip:nth-child(6) { grid-column: 2; }
    .wpi-section .wpi-chip:nth-child(7) { grid-column: 3; }
}