:root
{
    --bg: #050509;
    --bg-alt: #0b0b12;
    --card: #11111b;
    --accent: #ff4ecd;
    --accent-soft: rgba(255, 78, 205, .18);
    --accent-2: #6b68ff;
    --text-main: #f5f5ff;
    --text-soft: #a3a3c2;
    --border-subtle: #252538;
    --radius-xl: 18px;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, .7);
}

/* ABOUT PAGE LAYOUT */
.pk-about-page
{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'SF Pro', 'Segoe UI', sans-serif;

    color: var(--text-main);
}

.pk-about-inner
{
    max-width: 1120px;
    margin: 0 auto;
}

/* badge */
.pk-badge
{
    font-size: 11px;

    display: inline-flex;
    align-items: center;

    margin-bottom: 16px;
    padding: 4px 11px;

    letter-spacing: .16em;
    text-transform: uppercase;

    color: var(--text-soft);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 78, 205, .16), rgba(107, 104, 255, .12));

    gap: 8px;
}

.pk-badge-dot
{
    width: 7px;
    height: 7px;

    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #fff, #ff4ecd);
    box-shadow: 0 0 10px rgba(255, 78, 205, .8);
}

/* HERO */
.pk-hero
{
    display: grid;
    align-items: center;

    margin-bottom: 72px;

    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 40px;
}

.pk-hero h1
{
    font-size: clamp(32px, 4vw, 40px);
    line-height: 1.1;

    margin: 0 0 16px;
}

.pk-hero-title-accent
{
    color: transparent;
    background: linear-gradient(120deg, #ff4ecd, #ffc764, #6b68ff);
    -webkit-background-clip: text;
}

.pk-hero p
{
    font-size: 15px;
    line-height: 1.7;

    max-width: 520px;
    margin-bottom: 20px;

    color: var(--text-soft);
}

.pk-hero-meta
{
    font-size: 13px;

    display: flex;
    flex-wrap: wrap;

    color: var(--text-soft);

    gap: 18px;
}

.pk-hero-meta span
{
    display: inline-flex;
    align-items: center;

    gap: 6px;
}

.pk-hero-meta strong
{
    font-weight: 600;

    color: var(--text-main);
}

.pk-hero-chip
{
    padding: 4px 10px;

    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    background: rgba(11, 11, 18, .8);
}

.pk-hero-card
{
    position: relative;

    overflow: hidden;

    min-height: 220px;
    padding: 20px;

    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 26px;
    background: radial-gradient(circle at top left, #332344, #06050f 52%);
    box-shadow: var(--shadow-soft);
}

.pk-hero-card::before
{
    position: absolute;

    content: '';
    pointer-events: none;

    opacity: .7;
    background: conic-gradient(from 180deg, rgba(255, 78, 205, .16), rgba(107, 104, 255, .06), transparent 55%);

    inset: -40%;
    filter: blur(28px);
}

.pk-hero-card-inner
{
    position: relative;

    padding: 18px 18px 20px;

    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, .03), rgba(5, 5, 9, .9));

    backdrop-filter: blur(12px);
}

.pk-hero-pill-row
{
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;

    gap: 16px;
}

.pk-hero-pill
{
    font-size: 11px;

    padding: 5px 11px;

    letter-spacing: .16em;
    text-transform: uppercase;

    color: var(--text-soft);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 999px;
    background: rgba(0, 0, 0, .5);
}

.pk-hero-stat
{
    text-align: right;
}

.pk-hero-stat strong
{
    font-size: 20px;
}

.pk-hero-display
{
    padding: 26px 22px;

    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: radial-gradient(circle at 10% 0, rgba(255, 255, 255, .06), rgba(8, 8, 16, .98));
}

.pk-hero-display-label
{
    font-size: 11px;

    margin-bottom: 6px;

    letter-spacing: .18em;
    text-transform: uppercase;

    color: var(--text-soft);
}

.pk-hero-display-main
{
    display: flex;
    align-items: baseline;
    justify-content: space-between;

    gap: 10px;
}

.pk-hero-display-main h2
{
    font-size: 18px;

    margin: 0;
}

.pk-hero-display-badge
{
    font-size: 11px;

    padding: 4px 10px;

    color: #ffd5f3;
    border: 1px solid rgba(255, 78, 205, .5);
    border-radius: 999px;
    background: rgba(255, 78, 205, .12);
}

.pk-hero-foot
{
    font-size: 11px;

    display: flex;
    justify-content: space-between;

    margin-top: 18px;

    color: var(--text-soft);

    gap: 18px;
}

.pk-hero-foot span
{
    opacity: .85;
}

/* SECTION TITLES */

.pk-section
{
    margin-bottom: 72px;
}

.pk-section-header
{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 26px;

    gap: 24px;
}

.pk-section-title
{
    font-size: 22px;

    margin: 0 0 4px;
}

.pk-section-sub
{
    font-size: 13px;

    max-width: 460px;

    color: var(--text-soft);
}

.pk-section-tag
{
    font-size: 11px;

    letter-spacing: .16em;
    text-transform: uppercase;

    color: var(--text-soft);
}

/* STORY GRID */

.pk-story-grid
{
    display: grid;

    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 26px;
}

.pk-story-main
{
    padding: 22px 22px 24px;

    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    background: var(--bg-alt);
    box-shadow: var(--shadow-soft);
}

.pk-story-main p
{
    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 12px;

    color: var(--text-soft);
}

.pk-story-main p:last-child
{
    margin-bottom: 0;
}

.pk-story-highlight
{
    font-size: 13px;

    margin-top: 16px;
    padding-left: 14px;

    color: #fce8ff;
    border-left: 2px solid var(--accent);
}

.pk-story-side
{
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.pk-stat-card
{
    padding: 16px 18px;

    border: 1px solid rgba(255, 78, 205, .4);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 78, 205, .12), rgba(9, 9, 18, .95));
}

.pk-stat-label
{
    font-size: 11px;

    margin-bottom: 4px;

    letter-spacing: .16em;
    text-transform: uppercase;

    color: #ffd5f3;
}

.pk-stat-value
{
    font-size: 22px;

    margin-bottom: 4px;
}

.pk-stat-caption
{
    font-size: 12px;

    color: var(--text-soft);
}

.pk-mini-card
{
    font-size: 13px;

    padding: 14px 16px;

    color: var(--text-soft);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    background: var(--bg-alt);
}

.pk-mini-card strong
{
    font-weight: 600;

    color: var(--text-main);
}

/* DIFFERENTIATORS */

.pk-grid-3
{
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pk-pill-card
{
    position: relative;

    overflow: hidden;

    padding: 18px 18px 20px;

    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    background: var(--bg-alt);
}

.pk-pill-card::before
{
    position: absolute;

    content: '';
    transition: opacity .2s ease-out;
    pointer-events: none;

    opacity: 0;
    background: radial-gradient(circle at top left, var(--accent-soft), transparent 65%);

    inset: -40%;
}

.pk-pill-card:hover::before
{
    opacity: 1;
}

.pk-pill-icon
{
    font-size: 15px;

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

    width: 28px;
    height: 28px;
    margin-bottom: 10px;

    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(0, 0, 0, .55);
}

.pk-pill-card h3
{
    font-size: 15px;

    margin: 0 0 8px;
}

.pk-pill-card p
{
    font-size: 13px;
    line-height: 1.6;

    margin: 0;

    color: var(--text-soft);
}

/* DROP FLOW */

.pk-flow
{
    display: grid;
    align-items: center;

    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 26px;
}

.pk-flow-steps
{
    display: grid;

    gap: 16px;
}

.pk-flow-step
{
    display: grid;
    align-items: flex-start;

    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
}

.pk-flow-step-index
{
    font-size: 12px;

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

    width: 26px;
    height: 26px;

    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .2), rgba(5, 5, 9, .9));
}

.pk-flow-step h3
{
    font-size: 14px;

    margin: 0 0 4px;
}

.pk-flow-step p
{
    font-size: 13px;

    margin: 0;

    color: var(--text-soft);
}

.pk-flow-panel
{
    padding: 18px 18px 20px;

    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top, rgba(255, 78, 205, .16), rgba(9, 9, 18, .96));
    box-shadow: var(--shadow-soft);
}

.pk-flow-panel h3
{
    font-size: 15px;

    margin: 0 0 8px;
}

.pk-flow-panel p
{
    font-size: 13px;

    margin: 0 0 10px;

    color: var(--text-soft);
}

.pk-flow-tags
{
    font-size: 11px;

    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.pk-flow-tag
{
    padding: 4px 9px;

    color: var(--text-soft);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(0, 0, 0, .55);
}

/* CTA / COMMUNITY */

.pk-cta
{
    display: grid;
    align-items: center;

    padding: 22px 20px 22px;

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    background: radial-gradient(circle at top left, rgba(255, 78, 205, .24), #050509 60%);

    grid-template-columns: minmax(0, 1.2fr) minmax(0, .9fr);
    gap: 24px;
}

.pk-cta h2
{
    font-size: 20px;

    margin: 0 0 6px;
}

.pk-cta p
{
    font-size: 13px;

    margin: 0;

    color: var(--text-soft);
}

.pk-cta-actions
{
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.pk-btn-primary,
.pk-btn-ghost
{
    font-size: 13px;

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

    padding: 9px 16px;

    cursor: pointer;
    transition: transform .13s ease-out, box-shadow .13s ease-out, background .13s ease-out, border-color .13s ease-out;
    white-space: nowrap;
    text-decoration: none;

    border: 1px solid transparent;
    border-radius: 999px;

    gap: 6px;
}

.pk-btn-primary
{
    font-weight: 600;

    color: #120815;
    background: linear-gradient(120deg, #ff4ecd, #ff9b47);
    box-shadow: 0 14px 30px rgba(255, 78, 205, .5);
}

.pk-btn-primary:hover
{
    transform: translateY(-1px);

    box-shadow: 0 18px 40px rgba(255, 78, 205, .7);
}

.pk-btn-ghost
{
    color: var(--text-soft);
    border-color: rgba(255, 255, 255, .18);
    background: rgba(4, 4, 10, .85);
}

.pk-btn-ghost:hover
{
    border-color: rgba(255, 255, 255, .3);
    background: rgba(10, 10, 18, 1);
}

.pk-cta-meta
{
    font-size: 11px;

    margin-top: 8px;

    color: var(--text-soft);
}

.pk-cta-meta span
{
    opacity: .8;
}

.pk-cta-meta strong
{
    color: var(--text-main);
}

/* RESPONSIVE */

@media (max-width: 900px)
{
    .pk-hero,
    .pk-story-grid,
    .pk-flow,
    .pk-cta
    {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px)
{
    .pk-about-page
    {
        padding-top: 60px;
        padding-bottom: 72px;
    }

    .pk-hero
    {
        margin-bottom: 56px;

        gap: 26px;
    }

    .pk-grid-3
    {
        grid-template-columns: minmax(0, 1fr);
    }

    .pk-section-header
    {
        align-items: flex-start;
        flex-direction: column;
    }

    .pk-cta-actions
    {
        width: 100%;
    }

    .pk-btn-primary,
    .pk-btn-ghost
    {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 480px)
{
    .pk-hero p
    {
        font-size: 14px;
    }

    .pk-section-title
    {
        font-size: 20px;
    }
}
