/* =========================================
           GLOBAL VARIABLES
           ========================================= */
:root {
    --dark-900: #0D0D15;
    --dark-800: #1A1A22;
    --neon-400: #FACC15;
    --neon-400-rgb: 250, 204, 21;
    --amber-500: #F59E0B;
    --brand-500: #0EA5E9;
    --brand-900: #0C4A6E;
    --brand-500-rgb: 14, 165, 233;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --font-sans: "Inter", sans-serif;
    --font-display: "Space Grotesk", sans-serif;
    --font-mono: "JetBrains Mono", monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--slate-300);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Container Utility */
.psp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================
           PARTNERS PAGE STYLES (psp-)
           ========================================= */

.psp-wrapper {
    background-color: #020617;
    padding-top: 8rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Background Ambience */
.psp-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top center, rgba(var(--neon-400-rgb), 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* --- Header --- */
.psp-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.psp-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .psp-title {
        font-size: 5rem;
    }
}

.psp-text-stroke {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
}

.psp-desc {
    color: var(--slate-400);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Tiers General --- */
.psp-tier-section {
    margin-bottom: 8rem;
    position: relative;
    z-index: 1;
}

/* --- Diamond Tier --- */
.psp-diamond-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: psp-fade-up 0.8s ease-out forwards;
}

.psp-divider {
    height: 1px;
    width: 3rem;
}

.psp-divider.left {
    background: linear-gradient(to right, transparent, var(--neon-400));
}

.psp-divider.right {
    background: linear-gradient(to left, transparent, var(--neon-400));
}

.psp-tag-diamond {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-400);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
}

.psp-diamond-grid {
    display: grid;
    place-items: center;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}


/* Beautiful Diamond Card */
.psp-diamond-card {
    position: relative;
    padding: 1px;
    width: 100%;
    max-width: 60rem;
    /* Border thickness */
    border-radius: 3rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    transition: transform 0.4s ease;
}

.psp-diamond-card:hover {
    transform: translateY(-5px);
}

.psp-diamond-inner {
    position: relative;
    background-color: var(--dark-900);
    border-radius: 2.9rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    height: 100%;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.psp-diamond-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background-color: rgba(250, 204, 21, 0.15);
    filter: blur(100px);
    border-radius: 9999px;
    opacity: 0.5;
    transition: opacity 0.7s ease;
}

.psp-diamond-card:hover .psp-diamond-bg-glow {
    opacity: 0.8;
}

.psp-diamond-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.psp-logo-diamond {
    height: 6rem;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .psp-logo-diamond {
        height: 8rem;
    }
}

.psp-diamond-card:hover .psp-logo-diamond {
    transform: scale(1.05);
}

.psp-name-diamond {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.psp-desc-diamond {
    color: var(--slate-400);
    font-family: var(--font-mono);
    font-size: 0.875rem;
}

.psp-link-diamond {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-400);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color 0.3s;
}

.psp-link-diamond:hover {
    color: white;
}

/* --- platinium Tier --- */
.psp-platinum-advanced-section {
    margin-bottom: 8rem;
    /* mb-32 */
}

/* Header */
.psp-platinum-advanced-header {
    text-align: center;
    margin-bottom: 4rem;
}

.psp-platinum-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: #1e293b;
    /* slate-800 */
    border: 1px solid #475569;
    /* slate-600 */
    color: #cbd5e1;
    /* slate-300 */
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    box-shadow: 0 0 15px rgba(148, 163, 184, 0.2);
}

/* Grid */
.psp-platinum-advanced-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

/* Card */
.psp-platinum-advanced-card {
    position: relative;
    width: 100%;
    border-radius: 1.5rem;
    background: linear-gradient(to bottom right, #0f172a, #1e293b);
    border: 1px solid rgba(71, 85, 105, 0.5);
    padding: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    overflow: hidden;
}

@media (min-width: 768px) {
    .psp-platinum-advanced-card {
        width: calc(50% - 1rem);
    }
}

.psp-platinum-advanced-card:hover {
    background: linear-gradient(to bottom right, #1e293b, #334155);
    border-color: rgba(148, 163, 184, 0.5);
    box-shadow: 0 0 40px rgba(148, 163, 184, 0.15);
}

/* External Icon */
.psp-external-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    color: #94a3b8;
}

.psp-platinum-advanced-card:hover .external-icon {
    opacity: 1;
}

.psp-external-icon:hover {
    color: #ffffff;
}

/* Inner Glow */
.psp-inner-glow {
    position: absolute;
    inset: 0;
    background: rgba(148, 163, 184, 0.05);
    opacity: 0;
    filter: blur(40px);
    transition: opacity 0.5s ease;
}

.psp-platinum-advanced-card:hover .inner-glow {
    opacity: 1;
}

/* Content */
.psp-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.psp-card-content img {
    height: 6rem;
    /* h-24 */
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    opacity: 0.8;
    transition: all 0.5s ease;
}

.psp-platinum-advanced-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Text */
.psp-card-text h4 {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.psp-partner-type {
    color: #94a3b8;
    font-size: 0.75rem;
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    display: inline-block;
}

/* --- Gold Tier --- */
.psp-gold-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: psp-fade-up 0.8s ease-out forwards;
}

.psp-tag-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(120, 53, 15, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--amber-500);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.psp-gold-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .psp-gold-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.psp-gold-card {
    background: linear-gradient(to bottom right, #020617, #451a0330);
    border-radius: 1.5rem;
    border: 1px solid rgba(120, 53, 15, 0.4);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    animation: psp-fade-up 0.8s ease-out forwards;
}

.psp-gold-card:hover {
    border: 1px solid rgba(245, 158, 11, 0.6);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.15);
    transform: translateY(-5px);
}

.psp-icon-external {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--slate-400);
    opacity: 0;
    transition: opacity 0.3s;
}

.psp-gold-card:hover .psp-icon-external {
    opacity: 1;
}

.psp-logo-gold {
    height: 4rem;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.psp-gold-card:hover .psp-logo-gold {
    opacity: 1;
}

.psp-name-gold {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.psp-type-gold {
    color: rgba(245, 158, 11, .8);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
}

/* --- Silver Tier --- */
.psp-silver-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: psp-fade-up 0.8s ease-out forwards;
}

.psp-tag-silver {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(71, 85, 105, 0.5);

    color: #cbd5f5;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 0 15px rgba(148, 163, 184, 0.1);
}

.psp-silver-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .psp-silver-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.psp-silver-card {
    background: linear-gradient(to bottom right, #020617, #1e293b30);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    animation: psp-fade-up 0.8s ease-out forwards;
}

.psp-silver-card:hover {
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 0 20px rgba(148, 163, 184, 0.1);
    transform: translateY(-5px);
}

.psp-icon-external {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.psp-silver-card:hover .psp-icon-external {
    opacity: 1;
}

.psp-logo-silver {
    height: 4rem;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.psp-silver-card:hover .psp-logo-silver {
    opacity: 1;
}

.psp-name-silver {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.psp-type-silver {
    color: #64748b;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
}

/* --- media Tier --- */
.psp-media-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: psp-fade-up 0.8s ease-out forwards;
}

.psp-tag-media {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(112, 26, 117, 0.2);
    border: 1px solid rgba(217, 70, 239, 0.3);
    color: #d946ef;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.2);
}

.psp-media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .psp-media-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.psp-media-card {
    background: linear-gradient(to bottom right, #020617, #4a044e30);
    border-radius: 1.5rem;
    border: 1px solid rgba(112, 26, 117, 0.4);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    animation: psp-fade-up 0.8s ease-out forwards;
}

.psp-media-card:hover {
    border: 1px solid rgba(217, 70, 239, 0.6);
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.15);
    transform: translateY(-5px);
}

.psp-icon-external {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.psp-media-card:hover .psp-icon-external {
    opacity: 1;
}

.psp-logo-media {
    height: 4rem;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.psp-media-card:hover .psp-logo-media {
    opacity: 1;
}

.psp-name-media {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.psp-type-media {
    color: rgba(217, 70, 239, .8);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
}

/* --- CTA --- */
.psp-cta {
    margin-top: 8rem;
    position: relative;
    border-radius: 1.5rem;
    background-color: rgba(12, 74, 110, 0.3);
    /* brand-900/30 */
    border: 1px solid rgba(14, 165, 233, 0.2);
    padding: 4rem 2rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: psp-fade-up 0.8s ease-out forwards;
}

.psp-cta-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.psp-cta-content {
    position: relative;
    z-index: 10;
}

.psp-cta-icon-box {
    width: 4rem;
    height: 4rem;
    background-color: var(--brand-500);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.4);
    color: white;
}

.psp-cta-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.psp-cta-text {
    color: var(--slate-400);
    max-width: 36rem;
    margin: 0 auto 2rem;
    font-size: 1rem;
}

.psp-btn-cta {
    padding: 1rem 2rem;
    background-color: white;
    color: var(--dark-900);
    border-radius: 9999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.psp-btn-cta:hover {
    background-color: var(--neon-400);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}


/* Animations */
.psp-delay-100 {
    animation-delay: 100ms;
}

.psp-delay-200 {
    animation-delay: 200ms;
}

.psp-delay-300 {
    animation-delay: 300ms;
}

.psp-delay-400 {
    animation-delay: 400ms;
}

@keyframes psp-fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}