html, body {
    height: 100%;
    background: #ffffff;
}
body { overflow-x: hidden; }

.dc-page {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: 32px 44px 48px;
    color: #050505;
    overflow: hidden;
}

.dc-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.dc-orb { display: none; }
.dc-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, .035) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 25%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 25%, #000 30%, transparent 80%);
    opacity: .8;
}

.dc-topbar {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1224px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 56px;
    opacity: 0;
    animation: dc-fade-down .55s cubic-bezier(.16, 1, .3, 1) 80ms forwards;
}
.dc-logo { display: inline-block; transition: transform .25s cubic-bezier(.2, .8, .2, 1); }
.dc-logo:hover { transform: translateY(-1px); }
.dc-logo img {
    height: 38px;
    width: auto;
    display: block;
    user-select: none;
}

.dc-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px 9px 14px;
    border-radius: 999px;
    color: #ff001f;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s cubic-bezier(.2, .8, .2, 1), background .2s ease, color .2s ease;
}
.dc-back svg { transition: transform .2s ease; }
.dc-back:hover {
    color: #c4101a;
    background: rgba(255, 0, 31, .07);
    transform: translateX(-2px);
}
.dc-back:hover svg { transform: translateX(-3px); }


.dc-hero {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1224px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    flex: 1 1 auto;
}

.dc-hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 560px;
    opacity: 0;
    animation: dc-rise .8s cubic-bezier(.16, 1, .3, 1) 220ms forwards;
}
@keyframes dc-rise {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes dc-fade-down {
    0%   { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.dc-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 38px;
    padding: 0 18px 0 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff3f4 0%, #ffe7ea 100%);
    border: 1px solid rgba(255, 0, 31, .14);
    color: #e0091e;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: .1px;
    margin-bottom: 26px;
    box-shadow:
        0 4px 14px -6px rgba(255, 0, 31, .25),
        inset 0 1px 0 rgba(255, 255, 255, .9);
}
.dc-badge-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff2436, #d20012);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 3px 8px -2px rgba(240, 0, 20, .35);
}

.dc-title {
    width: 100%;
    max-width: 540px;
    margin: 0 0 22px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 5.2vw, 60px);
    line-height: 1.06;
    letter-spacing: -1.6px;
    color: #050505;
}
.dc-title em {
    font-style: normal;
    background: linear-gradient(135deg, #ff1525 0%, #d20012 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.dc-subtitle {
    margin: 0 0 32px;
    max-width: 460px;
    font-size: clamp(16px, 1.6vw, 21px);
    line-height: 1.45;
    font-weight: 400;
    color: #4b5563;
}

.dc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 388px;
    max-width: 100%;
    height: 68px;
    padding: 0 24px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f51120 0%, #d50013 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .25),
        inset 0 -2px 0 rgba(0, 0, 0, .12),
        0 18px 38px -10px rgba(240, 0, 20, .42),
        0 6px 14px -2px rgba(240, 0, 20, .26);
    transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s ease, filter .2s ease;
    position: relative;
    overflow: hidden;
    user-select: none;
}
.dc-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, .22) 50%, transparent 75%);
    transform: translateX(-110%);
    transition: transform .8s cubic-bezier(.2, .8, .2, 1);
    pointer-events: none;
}
.dc-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .25),
        inset 0 -2px 0 rgba(0, 0, 0, .12),
        0 24px 48px -10px rgba(240, 0, 20, .55),
        0 8px 18px -2px rgba(240, 0, 20, .32);
}
.dc-btn:hover::before { transform: translateX(110%); }
.dc-btn:active { transform: translateY(0); }

.dc-btn-discord { flex-shrink: 0; position: relative; z-index: 1; }
.dc-btn-text {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 1;
    margin-left: 4px;
}
.dc-btn-arrow {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform .2s ease;
}
.dc-btn:hover .dc-btn-arrow { transform: translateX(4px); }


.dc-hero-right {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 460px;
    display: grid;
    place-items: center;
    opacity: 0;
    animation: dc-rise .9s cubic-bezier(.16, 1, .3, 1) 360ms forwards;
}

.dc-art {
    position: relative;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 1 / 1;
}

.dc-art-glow {
    position: absolute;
    inset: 8% 8% 8% 8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 31, .22) 0%, rgba(255, 0, 31, .10) 35%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
    animation: dc-glow-pulse 5s ease-in-out infinite;
}
@keyframes dc-glow-pulse {
    0%, 100% { opacity: .8; transform: scale(1); }
    50%      { opacity: 1;  transform: scale(1.06); }
}


.dc-cube {
    position: absolute;
    border-radius: 22%;
    background:
        linear-gradient(155deg, #ff394a 0%, #f20d1f 50%, #c10010 100%);
    box-shadow:
        0 18px 32px -10px rgba(240, 0, 20, .38),
        0 6px 14px -4px rgba(240, 0, 20, .28),
        inset 0 4px 0 rgba(255, 255, 255, .30),
        inset 0 -4px 0 rgba(0, 0, 0, .14);
    display: grid;
    place-items: center;
    animation: dc-cube-bob 6.5s ease-in-out infinite;
    will-change: transform;
}
.dc-cube::before {
    content: '';
    width: 56%;
    height: 56%;
    border-radius: 18%;
    background: linear-gradient(180deg, #fff 0%, #fff5f6 100%);
    box-shadow:
        inset 0 1px 0 rgba(0, 0, 0, .04),
        0 1px 2px rgba(0, 0, 0, .04);
}
.dc-cube::after {
    content: '';
    position: absolute;
    width: 28%;
    height: 28%;
    border-radius: 18%;
    background: linear-gradient(135deg, #ff1525 0%, #d20012 100%);
    transform: rotate(45deg);
    box-shadow: 0 2px 6px -1px rgba(240, 0, 20, .35);
}

.dc-cube-1 { width: 11%; top:  4%;  left: 44%; transform: rotate(-10deg); animation-delay: -0.4s; }
.dc-cube-2 { width: 22%; top:  0%;  left: 76%; transform: rotate(14deg);  animation-delay: -2.2s; }
.dc-cube-3 { width: 10%; top: 36%;  left: 89%; transform: rotate(-22deg); animation-delay: -1.0s; }
.dc-cube-4 { width: 22%; top: 78%;  left: 78%; transform: rotate(8deg);   animation-delay: -3.4s; }
.dc-cube-5 { width: 17%; top: 78%;  left:  0%; transform: rotate(-6deg);  animation-delay: -1.8s; }
.dc-cube-6 { width: 12%; top: 88%;  left: 42%; transform: rotate(18deg);  animation-delay: -2.8s; }

@keyframes dc-cube-bob {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -10px; }
}


.dc-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58%;
    aspect-ratio: 1 / 1.05;
    border-radius: 26%;
    background:
        radial-gradient(ellipse 90% 60% at 50% 90%, rgba(255, 0, 31, .14), transparent 70%),
        linear-gradient(160deg, #ffffff 0%, #fff5f6 100%);
    border: 12px solid #ffffff;
    box-shadow:
        0 30px 60px -16px rgba(240, 6, 23, .28),
        0 8px 24px -10px rgba(0, 0, 0, .12),
        0 0 0 1px rgba(0, 0, 0, .03),
        inset 0 0 0 1px rgba(255, 255, 255, .8);
    display: grid;
    place-items: center;
    z-index: 2;
    animation: dc-face-float 6s ease-in-out infinite;
}
@keyframes dc-face-float {
    0%, 100% { transform: translate(-50%, -50%); }
    50%      { transform: translate(-50%, calc(-50% - 6px)); }
}

.dc-face-logo {
    width: 70%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    filter: drop-shadow(0 4px 10px rgba(255, 0, 31, .18));
}

.dc-face-dot {
    position: absolute;
    bottom: -8%;
    right: -8%;
    width: 22%;
    height: 22%;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff2436 0%, #d20012 100%);
    border: 10px solid #fff;
    box-shadow:
        0 8px 18px -2px rgba(240, 6, 23, .55),
        inset 0 2px 0 rgba(255, 255, 255, .35);
    z-index: 3;
}
.dc-face-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(255, 0, 31, .35);
    animation: dc-dot-ring 2.6s ease-out infinite;
}
@keyframes dc-dot-ring {
    0%   { transform: scale(1);   opacity: .9; }
    100% { transform: scale(1.7); opacity: 0; }
}


.dc-stats {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1080px;
    margin: 56px auto 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 22px;
    box-shadow:
        0 14px 38px -16px rgba(0, 0, 0, .08),
        0 4px 10px -4px rgba(0, 0, 0, .04);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 120px;
    overflow: hidden;
    opacity: 0;
    animation: dc-rise .8s cubic-bezier(.16, 1, .3, 1) 520ms forwards;
}

.dc-stat {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 32px;
    position: relative;
    transition: background .25s ease;
}
.dc-stat:hover { background: rgba(255, 0, 31, .025); }
.dc-stat + .dc-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .08) 50%, transparent 100%);
}

.dc-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .9), transparent 55%),
        linear-gradient(135deg, #fff5f6, #ffe7ea);
    color: #f20d1f;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow:
        0 4px 10px -4px rgba(231, 13, 25, .18),
        inset 0 1px 0 rgba(255, 255, 255, .8);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.dc-stat:hover .dc-stat-icon { transform: scale(1.06); }

.dc-stat-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.dc-stat-text strong {
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff1525 0%, #d20012 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
    letter-spacing: -.8px;
}
.dc-stat-text span {
    font-size: 14px;
    color: #4b5563;
    font-weight: 500;
}


.dc-skel {
    display: inline-block;
    width: 80px;
    height: 28px;
    border-radius: 7px;
    background: linear-gradient(90deg, #ffe5e8 0%, #fff0f2 50%, #ffe5e8 100%);
    background-size: 200% 100%;
    animation: dc-skel 1.4s linear infinite;
    color: transparent;
    vertical-align: middle;
    -webkit-text-fill-color: transparent;
}
@keyframes dc-skel {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


@media (max-width: 1100px) {
    .dc-page { padding: 28px 32px 40px; }
    .dc-topbar { margin-bottom: 36px; }

    .dc-hero {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: stretch;
    }

    .dc-hero-left {
        order: 1;
        max-width: 100%;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .dc-hero-right {
        order: 2;
        min-height: 0;
        margin-top: 8px;
    }
    .dc-art { max-width: 380px; }

    .dc-title { max-width: 100%; }
    .dc-subtitle { margin-left: auto; margin-right: auto; }

    .dc-stats {
        margin-top: 36px;
    }
}

@media (max-width: 760px) {
    .dc-page { padding: 24px 22px 36px; }
    .dc-topbar { margin-bottom: 28px; }
    .dc-logo img { height: 32px; }
    .dc-back { font-size: 14px; padding: 7px 14px 7px 11px; gap: 6px; }
    .dc-back svg { width: 16px; height: 16px; }

    .dc-art { max-width: 320px; }
    .dc-face { border-width: 10px; }
    .dc-face-dot { border-width: 8px; }

    .dc-badge {
        height: 34px;
        font-size: 13px;
        padding: 0 14px 0 6px;
        gap: 8px;
        margin-bottom: 20px;
    }
    .dc-badge-icon { width: 24px; height: 24px; }
    .dc-badge-icon svg { width: 12px; height: 12px; }

    .dc-title {
        font-size: clamp(32px, 9vw, 44px);
        letter-spacing: -1.1px;
        margin-bottom: 16px;
    }

    .dc-subtitle {
        font-size: 15px;
        margin-bottom: 26px;
    }
    .dc-subtitle br { display: none; }

    .dc-btn {
        width: 100%;
        max-width: 360px;
        height: 60px;
        font-size: 17px;
        padding: 0 20px;
        gap: 10px;
    }
    .dc-btn-discord { width: 22px; height: 17px; }
    .dc-btn-arrow   { width: 19px; height: 19px; }

    .dc-stats {
        height: auto;
        grid-template-columns: 1fr;
        margin-top: 30px;
        border-radius: 18px;
    }
    .dc-stat {
        padding: 18px 22px;
        gap: 16px;
    }
    .dc-stat + .dc-stat::before {
        left: 22px;
        right: 22px;
        top: 0;
        bottom: auto;
        width: auto;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .08) 50%, transparent 100%);
    }
    .dc-stat-icon { width: 52px; height: 52px; }
    .dc-stat-icon svg { width: 22px; height: 22px; }
    .dc-stat-text strong { font-size: 24px; letter-spacing: -.5px; }
    .dc-stat-text span { font-size: 13px; }

    .dc-skel { width: 64px; height: 22px; }
}

@media (max-width: 480px) {
    .dc-page { padding: 20px 18px 32px; }
    .dc-topbar { margin-bottom: 24px; }
    .dc-logo img { height: 28px; }
    .dc-back { font-size: 13.5px; padding: 6px 12px 6px 10px; }
    .dc-back svg { width: 15px; height: 15px; }

    .dc-art { max-width: 280px; }
    .dc-face { border-width: 9px; }
    .dc-face-dot { border-width: 7px; }

    .dc-badge {
        height: 32px;
        font-size: 12px;
        padding: 0 12px 0 5px;
    }
    .dc-badge-icon { width: 22px; height: 22px; }

    .dc-title {
        font-size: clamp(28px, 8.4vw, 36px);
        letter-spacing: -.9px;
    }

    .dc-subtitle { font-size: 14px; margin-bottom: 22px; }

    .dc-btn { height: 56px; font-size: 16px; gap: 8px; }
    .dc-btn-discord { width: 20px; height: 15px; }
    .dc-btn-arrow   { width: 17px; height: 17px; }

    .dc-stat { padding: 16px 18px; gap: 14px; }
    .dc-stat-icon { width: 46px; height: 46px; }
    .dc-stat-icon svg { width: 20px; height: 20px; }
    .dc-stat-text strong { font-size: 22px; }
    .dc-stat-text span { font-size: 12.5px; }
}

@media (max-width: 360px) {
    .dc-art { max-width: 240px; }
    .dc-title { font-size: clamp(26px, 7.8vw, 32px); }
    .dc-btn { height: 54px; font-size: 15px; }
    .dc-stat-text strong { font-size: 20px; }
}


@media (prefers-reduced-motion: reduce) {
    .dc-orb,
    .dc-cube,
    .dc-face,
    .dc-face-dot::before,
    .dc-art-glow,
    .dc-skel,
    .dc-btn::before,
    .dc-topbar,
    .dc-hero-left,
    .dc-hero-right,
    .dc-stats {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .dc-face { transform: translate(-50%, -50%) !important; }
    .dc-btn::before { display: none; }
}

.discord-section {
    width: 100%;
    padding: 60px 28px 80px;
    position: relative;
    background: transparent;
}
.ds-container {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ds-left { position: relative; z-index: 2; }
.ds-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    border: 1.5px solid rgba(239, 0, 0, .35);
    color: #ef0000;
    font-size: 12.5px;
    font-weight: 900;
    letter-spacing: .2px;
    box-shadow: 0 10px 24px -10px rgba(239, 0, 0, .35);
    margin-bottom: 22px;
}
.ds-badge svg { flex-shrink: 0; }

.ds-title {
    font-size: clamp(40px, 4.6vw, 64px);
    line-height: 0.94;
    letter-spacing: -2.6px;
    font-weight: 900;
    color: #050505;
    margin-bottom: 18px;
}
.ds-title span { display: block; }
.ds-title-accent { color: #ef0000; }

.ds-text {
    color: #5d6576;
    font-size: 15.5px;
    line-height: 1.45;
    font-weight: 600;
    max-width: 420px;
    margin-bottom: 20px;
}

.ds-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.ds-features-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #2a2f3a;
    font-size: 14.5px;
    font-weight: 700;
}
.ds-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: #ef0000;
    color: #fff;
    box-shadow: 0 6px 14px -6px rgba(239, 0, 0, .55);
}

.ds-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 60px;
    padding: 0 32px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff2020, #d80000);
    color: #fff;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    border: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .25),
        0 18px 36px -12px rgba(239, 0, 0, .55);
    transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s ease;
    margin-bottom: 22px;
}
.ds-cta:hover {
    transform: translateY(-3px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .3),
        0 24px 46px -12px rgba(239, 0, 0, .65);
}

.ds-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ds-avatars { display: inline-flex; }
.ds-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--av-from, #ccc), var(--av-to, #999));
    border: 2.5px solid #fff;
    margin-left: -8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
}
.ds-av:first-child { margin-left: 0; }
.ds-av-photo { background: #eee; overflow: hidden; }
.ds-av-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ds-av.is-clickable { cursor: pointer; transition: transform .2s cubic-bezier(.16, 1, .3, 1), box-shadow .2s ease; }
.ds-av.is-clickable:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 8px 16px rgba(0, 0, 0, .28); z-index: 2; }

.ds-av-skel {
    background: linear-gradient(90deg, #ececec 0%, #f6f6f6 50%, #ececec 100%);
    background-size: 200% 100%;
    animation: dc-skel 1.4s linear infinite;
}
.ds-av-enter { animation: ds-av-pop .5s cubic-bezier(.16, 1, .3, 1) both; }
@keyframes ds-av-pop {
    0%   { opacity: 0; transform: scale(.55); }
    100% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
    .ds-av-skel { animation: none; }
    .ds-av-enter { animation: none; }
}

.ds-profile-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 20px;
}
.ds-profile-modal[hidden] { display: none; }
.ds-profile-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .62);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity .45s cubic-bezier(.16, 1, .3, 1);
}
.ds-profile-modal.is-open .ds-profile-backdrop { opacity: 1; }
.ds-profile-card {
    position: relative;
    z-index: 1;
    width: min(340px, 100%);
    background: #232428;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .65);
    opacity: 0;
    transform: translateY(30px) scale(.92);
    transition: transform .62s cubic-bezier(.16, 1, .3, 1), opacity .5s cubic-bezier(.16, 1, .3, 1);
}
.ds-profile-modal.is-open .ds-profile-card { opacity: 1; transform: none; }
.ds-profile-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .38);
    color: #fff;
    border: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    backdrop-filter: blur(4px);
    transition: background .2s ease;
}
.ds-profile-close:hover { background: rgba(0, 0, 0, .58); }
.ds-profile-banner { height: 106px; background: linear-gradient(135deg, #5865f2, #111214); }
.ds-profile-avatar-wrap { position: relative; width: 84px; height: 84px; margin: -42px 0 0 20px; }
.ds-profile-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 6px solid #232428;
    background: #232428;
    object-fit: cover;
    display: block;
}
.ds-profile-status {
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f0b232;
    border: 5px solid #232428;
}
.ds-profile-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #232428;
}
.ds-profile-body { padding: 10px 20px 22px; }
.ds-profile-name { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -.3px; line-height: 1.2; }
.ds-profile-username { font-size: 13px; color: #b5bac1; font-weight: 600; margin-top: 1px; }
.ds-profile-panel { margin-top: 14px; background: #111214; border-radius: 10px; padding: 13px 14px; }
.ds-profile-label { font-size: 10.5px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; color: #949ba4; margin-bottom: 6px; }
.ds-profile-label + .ds-profile-since,
.ds-profile-label + .ds-profile-role { margin-bottom: 0; }
.ds-profile-panel .ds-profile-label:not(:first-child) { margin-top: 14px; }
.ds-profile-role {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: rgba(88, 101, 242, .2);
    border: 1px solid rgba(88, 101, 242, .45);
}
.ds-profile-role::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--role-color, #5865f2); }
.ds-profile-since { font-size: 13px; color: #dbdee1; font-weight: 600; }
.ds-social-proof p {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
    margin: 0;
}
.ds-social-proof strong { color: #1a1a1a; font-weight: 900; }

.ds-right {
    position: relative;
    min-height: 540px;
}
.ds-mockup {
    position: relative;
    z-index: 2;
    width: min(680px, 100%);
    height: 480px;
    border-radius: 18px;
    overflow: hidden;
    background: #1a1d24;
    box-shadow:
        0 26px 60px -18px rgba(15, 15, 15, .35),
        0 2px 6px rgba(15, 15, 15, .08);
    display: grid;
    grid-template-columns: 130px 1fr;
}

.ds-mock-sidebar {
    background: #0f1216;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.ds-mock-server {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    display: grid;
    place-items: center;
    margin-bottom: 4px;
}
.ds-mock-skel {
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, #2a2f38 0%, #353b45 40%, #2a2f38 80%);
    background-size: 200% 100%;
    animation: ds-shimmer 2.4s linear infinite;
}
@keyframes ds-shimmer {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
}
.ds-skel-wide   { width: 100%; }
.ds-skel-mid    { width: 70%; }
.ds-skel-narrow { width: 56px; }
.ds-skel-foot   { width: 80%; margin-top: auto; height: 6px; }

.ds-mock-channel {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background .2s;
}
.ds-mock-channel.is-active {
    background: rgba(255, 255, 255, .08);
}
.ds-mock-hash { color: #555c6b; font-weight: 800; font-size: 13px; line-height: 1; }
.ds-mock-ch-emo { font-size: 11px; line-height: 1; }
.ds-mock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef0000;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(239, 0, 0, .6);
}
.ds-mock-channel .ds-mock-skel { flex: 1; }

.ds-mock-online {
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
}
.ds-mock-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .55);
    animation: ds-pulse 2s ease-in-out infinite;
}
@keyframes ds-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .55); }
    50%      { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.ds-mock-main {
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}
.ds-mock-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.ds-skel-line { height: 8px; width: 130px; border-radius: 4px; background: linear-gradient(90deg, #2a2f38, #353b45, #2a2f38); background-size: 200% 100%; animation: ds-shimmer 2.4s linear infinite; }
.ds-skel-dot { width: 12px; height: 12px; border-radius: 50%; }
.ds-skel-red { background: #ef0000; box-shadow: 0 0 10px rgba(239, 0, 0, .6); }
.ds-skel-red-sm { width: 8px; height: 8px; background: #ef0000; box-shadow: 0 0 8px rgba(239, 0, 0, .6); }
.ds-skel-tag {
    height: 10px;
    width: 78px;
    border-radius: 4px;
    background: transparent;
    border-bottom: 2px wavy #ef0000;
    position: relative;
    animation: none;
}
.ds-skel-tag::before {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 4px;
    background-image:
        repeating-linear-gradient(135deg, #ef0000 0 2px, transparent 2px 5px);
    mask-image: linear-gradient(90deg, #fff 0%, #fff 92%, transparent 100%);
    border-radius: 2px;
    opacity: .85;
}

.ds-mock-msg {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    align-items: flex-start;
}
.ds-mock-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}
.ds-mock-av span { display: block; }
.ds-mock-msg-body {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}
.ds-mock-msg-row { display: flex; align-items: center; gap: 8px; }
.ds-mock-gift { font-size: 16px; line-height: 1; }
.ds-skel-msg-1 { height: 9px; width: 60%; min-width: 100px; border-radius: 4px; background: linear-gradient(90deg, #ffffff, #d5d8dd, #ffffff); background-size: 200% 100%; animation: ds-shimmer 2.4s linear infinite; opacity: .92; }
.ds-skel-msg-2 { height: 9px; width: 50%; min-width: 90px; border-radius: 4px; background: linear-gradient(90deg, #ffffff, #d5d8dd, #ffffff); background-size: 200% 100%; animation: ds-shimmer 2.4s linear infinite; opacity: .92; }
.ds-skel-msg-3 { height: 9px; width: 80%; border-radius: 4px; background: linear-gradient(90deg, #4a505b, #5b626d, #4a505b); background-size: 200% 100%; animation: ds-shimmer 2.4s linear infinite; }

.ds-mock-reactions { padding-left: 44px; }
.ds-mock-react {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    background: rgba(255, 255, 255, .08);
    border-radius: 8px;
    color: #b8bdc8;
    font-size: 11px;
    font-weight: 700;
}

.ds-feature-card {
    position: absolute;
    right: -18px;
    z-index: 4;
    width: 232px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(15, 15, 15, .06);
    box-shadow:
        0 16px 30px -14px rgba(15, 15, 15, .22),
        0 2px 6px rgba(15, 15, 15, .04);
    opacity: 0;
    transform: translateX(12px);
    animation: ds-fc-in .55s cubic-bezier(.16, 1, .3, 1) forwards;
    animation-delay: var(--enter-delay, 0ms);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s ease, border-color .3s ease;
}
@keyframes ds-fc-in {
    to { opacity: 1; transform: translateX(0); }
}
.ds-feature-card:hover {
    transform: translateX(-8px) translateY(-3px) scale(1.025);
    border-color: rgba(239, 0, 0, .25);
    box-shadow:
        0 26px 46px -16px rgba(239, 0, 0, .3),
        0 4px 10px rgba(15, 15, 15, .06);
    z-index: 6;
}
.ds-feature-card:hover .ds-fc-icon { transform: scale(1.08) rotate(-4deg); }
.ds-fc-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: #ef0000;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.ds-fc-icon-pink {
    background: #ffe5e5;
}
.ds-fc-text strong {
    display: block;
    font-size: 13px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 2px;
}
.ds-fc-text p {
    margin: 0;
    color: #6b7280;
    font-size: 11.5px;
    line-height: 1.32;
    font-weight: 600;
}

.ds-fc-1 { top: 4%;   right: -24px; }
.ds-fc-2 { top: 23%;  right: -24px; }
.ds-fc-3 { top: 42%;  right: -24px; }
.ds-fc-4 { top: 61%;  right: -24px; }
.ds-fc-5 { top: 80%;  right: -24px; }

.ds-deco {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .15));
}
.ds-deco-discord {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #7c5cff, #5865f2);
    display: grid;
    place-items: center;
    animation: ds-cube-float 6.5s cubic-bezier(.45, .05, .55, .95) infinite;
    animation-delay: var(--cube-delay, 0ms);
}
@keyframes ds-cube-float {
    0%, 100% { transform: var(--cube-rot, rotate(0deg)) translateY(0); }
    50%      { transform: var(--cube-rot, rotate(0deg)) translateY(-10px); }
}
.ds-deco-discord-1 {
    top: -28px;
    right: 22%;
    transform: rotate(-12deg);
    --cube-rot: rotate(-12deg);
    width: 60px;
    height: 60px;
}
.ds-deco-discord-2 {
    bottom: 36px;
    left: 18%;
    transform: rotate(8deg);
    --cube-rot: rotate(8deg);
    width: 72px;
    height: 72px;
}
.ds-deco-hex {
    border-radius: 27%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 30px -8px rgba(15, 15, 15, .3), 0 0 0 1px rgba(15, 15, 15, .05);
    animation: ds-cube-float 7s cubic-bezier(.45, .05, .55, .95) infinite;
    animation-delay: var(--cube-delay, 0ms);
}
.ds-deco-hex img { display: block; width: 100%; height: 100%; object-fit: cover; }
.ds-deco-hex-1 { top: 4%;   left: 38%; width: 58px; height: 58px; transform: rotate(8deg);  --cube-rot: rotate(8deg);  --cube-delay: 300ms; }
.ds-deco-hex-2 { bottom: 6%; left: 50%; width: 48px; height: 48px; transform: rotate(-14deg); --cube-rot: rotate(-14deg); --cube-delay: 1100ms; }

.ds-orbit-curve {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.ds-stats {
    width: min(1200px, 100%);
    margin: 36px auto 0;
    background: #fff;
    border: 1px solid rgba(15, 15, 15, .08);
    border-radius: 18px;
    box-shadow: 0 18px 42px -18px rgba(15, 15, 15, .18);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 16px;
    gap: 12px;
}
.ds-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 18px;
    position: relative;
}
.ds-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0; top: 12px; bottom: 12px;
    width: 1px;
    background: rgba(15, 15, 15, .08);
}
.ds-stat-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffe5e5;
    display: grid;
    place-items: center;
    color: #ef0000;
}
.ds-stat-text strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 6px;
}
.ds-stat-text p {
    margin: 0;
    color: #6b7280;
    font-size: 11.5px;
    line-height: 1.35;
    font-weight: 600;
}

@keyframes ds-fc-in-up {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1050px) {
    .ds-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .ds-right {
        max-width: 680px;
        margin: 0 auto;
        width: 100%;
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .ds-mockup { width: 100%; }
    .ds-feature-card {
        position: relative;
        inset: auto;
        top: auto;
        right: auto;
        left: auto;
        width: auto;
        animation-name: ds-fc-in-up;
    }
    .ds-deco { display: none; }
    .ds-orbit-curve { display: none; }
}

@media (max-width: 720px) {
    .discord-section { padding: 36px 18px 50px; }
    .ds-title { font-size: clamp(30px, 8vw, 42px); letter-spacing: -1.4px; }
    .ds-text  { font-size: 14px; }
    .ds-features-list li { font-size: 13.5px; }
    .ds-mockup { height: 380px; grid-template-columns: 100px 1fr; }
    .ds-mock-sidebar { padding: 12px 8px; }
    .ds-mock-main { padding: 14px 16px; gap: 10px; }
    .ds-cta { width: 100%; justify-content: center; height: 56px; font-size: 15px; }
    .ds-stats { grid-template-columns: 1fr; gap: 8px; padding: 12px; }
    .ds-stat { padding: 8px 6px; }
    .ds-stat:not(:last-child)::after {
        right: 12px; left: 12px; top: auto; bottom: 0;
        width: auto; height: 1px;
    }
    .ds-stat-icon { width: 48px; height: 48px; }
    .ds-stat-text strong { font-size: 22px; }
}

@media (max-width: 480px) {
    .discord-section { padding: 28px 14px 36px; }
    .ds-title { font-size: 30px; letter-spacing: -1.2px; line-height: 1; }
    .ds-mockup { height: 280px; grid-template-columns: 78px 1fr; border-radius: 14px; }
    .ds-mock-channel { padding: 4px 6px; gap: 4px; }
    .ds-mock-channel .ds-mock-skel { display: none; }
    .ds-mock-main { padding: 12px 14px; }
    .ds-mock-msg { grid-template-columns: 28px 1fr; gap: 9px; }
    .ds-mock-av { width: 28px; height: 28px; font-size: 12px; }
    .ds-mock-reactions { padding-left: 38px; }
    .ds-feature-card { padding: 10px 12px; gap: 9px; }
    .ds-fc-icon { width: 34px; height: 34px; }
    .ds-fc-text strong { font-size: 12px; }
    .ds-fc-text p      { font-size: 11px; line-height: 1.3; }
    .ds-badge { font-size: 11px; padding: 6px 14px; }
    .ds-cta { font-size: 14px; height: 52px; padding: 0 22px; gap: 8px; }
    .ds-stat-icon { width: 44px; height: 44px; }
    .ds-stat-text strong { font-size: 20px; }
    .ds-stat-text p      { font-size: 11px; }
}
