:root {
    --bg-dark: #070709;
    --text-white: #ffffff;
    --text-muted: #8a8a93;
    --accent: #5e17eb;
    --accent-glow: rgba(94, 23, 235, 0.4);

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.ambient-light {
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
}

.light-1 {
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.25;
    animation: drift-1 12s ease-in-out infinite alternate;
}

.light-2 {
    bottom: -20%;
    left: -10%;
    background: radial-gradient(circle, #1a1a2e 0%, transparent 70%);
    width: 80vw;
    height: 80vw;
    opacity: 0.3;
    animation: drift-2 15s ease-in-out infinite alternate;
}

.light-3 {
    top: 40%;
    left: -15%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(94, 23, 235, 0.6) 0%, transparent 70%);
    opacity: 0.1;
    animation: drift-3 18s ease-in-out infinite alternate;
}

.light-4 {
    top: 20%;
    right: -20%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(120, 60, 255, 0.5) 0%, transparent 70%);
    opacity: 0.08;
    animation: drift-4 20s ease-in-out infinite alternate;
}

.hero-glow {
    position: fixed;
    top: 15%;
    right: 10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 23, 235, 0.35) 0%, rgba(94, 23, 235, 0.1) 40%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
    animation: hero-pulse 4s ease-in-out infinite alternate;
}

@keyframes drift-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-30px, 20px) scale(1.05);
    }
}

@keyframes drift-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, -15px) scale(1.08);
    }
}

@keyframes drift-3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 30px) scale(1.1);
    }
}

@keyframes drift-4 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-25px, -20px) scale(0.95);
    }
}

@keyframes hero-pulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.site-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 4rem;
    position: relative;
    z-index: 10;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-bottom: 4rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.brand-dot {
    color: var(--accent);
}

.glass-pill {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--text-white);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-primary {
    background: var(--text-white);
    color: var(--bg-dark);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 60vh;
    margin-bottom: 8rem;
}

.hero-content {
    position: relative;
    z-index: 25;
}

.hero-kicker {
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 2rem;
}

.text-accent {
    color: var(--accent);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 80%;
}

.hero-visual {
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.card-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.glass-card:hover .card-glare {
    opacity: 1;
}

.box-container {
    width: 260px;
    height: 380px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(10deg);
}

.box-face {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #0a0b0d;
    overflow: hidden;
}

.box-face::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.12;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.box-front,
.box-back {
    width: 260px;
    height: 380px;
    left: 0;
    top: 0;
}

.box-front {
    transform: translateZ(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background-color: #121317;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.4);
}

.box-back {
    transform: rotateY(180deg) translateZ(30px);
    background: #050507;
}

.box-left,
.box-right {
    width: 60px;
    height: 380px;
    top: 0;
    left: 100px;
}

.box-left {
    transform: rotateY(-90deg) translateZ(130px);
    background: #08090b;
    box-shadow: inset -20px 0 40px rgba(0, 0, 0, 0.3);
}

.box-right {
    transform: rotateY(90deg) translateZ(130px);
    background: #0d0e11;
    box-shadow: inset 20px 0 40px rgba(0, 0, 0, 0.2);
}

.box-top,
.box-bottom {
    width: 260px;
    height: 60px;
    left: 0;
    top: 160px;
}

.box-top {
    transform: rotateX(90deg) translateZ(190px);
    background: #1a1c22;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.02);
}

.box-bottom {
    transform: rotateX(-90deg) translateZ(190px);
    background: #020203;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9);
}

.box-front .hud-ring {
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(20px);
    background: rgba(0, 0, 0, 0.2);
    box-shadow:
        inset 0 0 15px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(94, 23, 235, 0.1);
}

.box-front .center-icon {
    font-size: 3rem;
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

.box-front h2 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    transform: translateZ(30px);
    color: #ffffff;
    text-shadow:
        1px 1px 0px rgba(255, 255, 255, 0.1),
        -1px -1px 0px rgba(0, 0, 0, 0.5);
}

.box-front p {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateZ(20px);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--glass-border) 0%, transparent 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    perspective: 1500px;
}

.feature-card {
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.1s ease-out;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
}

.card-accent {
    border-color: rgba(94, 23, 235, 0.3);
    box-shadow: 0 20px 50px rgba(94, 23, 235, 0.1);
}

.card-icon {
    font-size: 3rem;
    font-weight: 900;
    color: var(--glass-border);
    margin-bottom: 2rem;
    transform: translateZ(30px);
}

.card-accent .card-icon {
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transform: translateZ(40px);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    transform: translateZ(20px);
}

.site-footer {
    margin-top: 8rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-weight: 900;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-white);
}

.pricing-section {
    margin-bottom: 8rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    perspective: 1500px;
    align-items: center;
}

.pricing-card {
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.1s ease-out;
}

.pricing-card.featured {
    padding: 4rem 2rem;
    transform: scale(1.05) translateZ(20px);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--accent);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 900;
    padding: 0.25rem 3rem;
    transform: rotate(45deg);
    letter-spacing: 2px;
}

.pricing-card h3 {
    font-size: 1.25rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.price span:first-child {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.price span:last-child {
    font-size: 1rem;
    align-self: flex-end;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    margin-bottom: 3rem;
    flex: 1;
}

.features-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.95rem;
    color: var(--text-white);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.5;
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--glass-border);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-secondary:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-card .btn-primary {
    width: 100%;
}

.testimonials-section {
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.testimonial-card {
    padding: 3rem;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-card.card-accent {
    border-color: rgba(94, 23, 235, 0.3);
}

.testimonial-card.card-accent:hover {
    background: rgba(94, 23, 235, 0.08);
    border-color: rgba(94, 23, 235, 0.6);
}

.quote-icon {
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 6rem;
    font-family: serif;
    color: var(--glass-border);
    line-height: 1;
    z-index: 0;
}

.quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    font-style: italic;
}

.author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.author-name {
    font-weight: 900;
    color: var(--accent);
}

.author-rank {
    font-size: 0.85rem;
    color: var(--text-muted);
}


.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: modal-fade-in 0.3s ease;
}

.modal-overlay.active {
    display: flex !important;
}

.modal-box {
    background: linear-gradient(135deg, #1a0a0a 0%, #0d0d0d 100%);
    border: 1px solid rgba(255, 40, 40, 0.4);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow:
        0 0 40px rgba(255, 40, 40, 0.15),
        0 0 80px rgba(255, 40, 40, 0.05),
        0 30px 60px rgba(0, 0, 0, 0.5);
    animation: modal-scale-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    animation: icon-pulse 2s ease-in-out infinite;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff3333;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 40, 40, 0.4);
}

.modal-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modal-text b {
    color: #ff3333;
    text-shadow: 0 0 12px rgba(255, 40, 40, 0.5), 0 0 30px rgba(255, 40, 40, 0.2);
}

.modal-btn {
    background: rgba(255, 40, 40, 0.15);
    color: #ff3333;
    border: 1px solid rgba(255, 40, 40, 0.4);
    padding: 0.9rem 2.5rem;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-btn:hover {
    background: rgba(255, 40, 40, 0.3);
    border-color: rgba(255, 40, 40, 0.7);
    box-shadow: 0 0 20px rgba(255, 40, 40, 0.2);
    transform: translateY(-1px);
}

@keyframes modal-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modal-scale-in {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes icon-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.crew-card-solo {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 1.5rem);
}


@media (max-width: 768px) {
    .site-wrapper {
        padding: 1.5rem 1.5rem;
    }

    .top-nav {
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 1rem 0;
    }

    .nav-brand {
        font-size: 1.25rem;
    }

    .nav-status {
        order: 3;
        width: 100%;
        justify-content: center;
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .nav-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: auto;
        margin-bottom: 4rem;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-kicker {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-visual {
        order: -1;
    }

    .box-container {
        width: 180px;
        height: 260px;
    }

    .box-front,
    .box-back {
        width: 180px;
        height: 260px;
    }

    .box-left,
    .box-right {
        width: 40px;
        height: 260px;
        left: 70px;
    }

    .box-left {
        transform: rotateY(-90deg) translateZ(90px);
    }

    .box-right {
        transform: rotateY(90deg) translateZ(90px);
    }

    .box-top,
    .box-bottom {
        width: 180px;
        height: 40px;
        top: 110px;
    }

    .box-top {
        transform: rotateX(90deg) translateZ(130px);
    }

    .box-bottom {
        transform: rotateX(-90deg) translateZ(130px);
    }

    .box-front .hud-ring {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .box-front .center-icon {
        font-size: 2rem;
    }

    .box-front h2 {
        font-size: 1.1rem;
    }

    .box-front p {
        font-size: 0.7rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .card-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .pricing-section {
        margin-bottom: 4rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: none;
        padding: 3rem 2rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .crew-card-solo {
        grid-column: auto;
        justify-self: stretch;
        width: 100%;
    }

    .site-footer {
        margin-top: 4rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-glow {
        width: 300px;
        height: 300px;
        top: 5%;
        right: -10%;
    }
}


@media (max-width: 480px) {
    .site-wrapper {
        padding: 1rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .box-container {
        width: 150px;
        height: 220px;
    }

    .box-front,
    .box-back {
        width: 150px;
        height: 220px;
    }

    .box-left,
    .box-right {
        width: 30px;
        height: 220px;
        left: 60px;
    }

    .box-left {
        transform: rotateY(-90deg) translateZ(75px);
    }

    .box-right {
        transform: rotateY(90deg) translateZ(75px);
    }

    .box-top,
    .box-bottom {
        width: 150px;
        height: 30px;
        top: 95px;
    }

    .box-top {
        transform: rotateX(90deg) translateZ(110px);
    }

    .box-bottom {
        transform: rotateX(-90deg) translateZ(110px);
    }

    .box-front .hud-ring {
        width: 55px;
        height: 55px;
        margin-bottom: 1rem;
    }

    .box-front .center-icon {
        font-size: 1.5rem;
    }

    .box-front h2 {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .featured-badge {
        font-size: 0.6rem;
        padding: 0.2rem 2.5rem;
        top: 0.75rem;
        right: -2.25rem;
    }

    .quote-icon {
        font-size: 4rem;
    }

    .hero-glow {
        width: 200px;
        height: 200px;
    }
}

.new-feature-sticker {
    --seal-clip: polygon(50.00% 0.00%, 55.35% 9.35%, 62.94% 1.70%, 65.69% 12.12%, 75.00% 6.70%, 74.96% 17.47%, 85.36% 14.64%, 82.53% 25.04%, 93.30% 25.00%, 87.88% 34.31%, 98.30% 37.06%, 90.65% 44.65%, 100.00% 50.00%, 90.65% 55.35%, 98.30% 62.94%, 87.88% 65.69%, 93.30% 75.00%, 82.53% 74.96%, 85.36% 85.36%, 74.96% 82.53%, 75.00% 93.30%, 65.69% 87.88%, 62.94% 98.30%, 55.35% 90.65%, 50.00% 100.00%, 44.65% 90.65%, 37.06% 98.30%, 34.31% 87.88%, 25.00% 93.30%, 25.04% 82.53%, 14.64% 85.36%, 17.47% 74.96%, 6.70% 75.00%, 12.12% 65.69%, 1.70% 62.94%, 9.35% 55.35%, 0.00% 50.00%, 9.35% 44.65%, 1.70% 37.06%, 12.12% 34.31%, 6.70% 25.00%, 17.47% 25.04%, 14.64% 14.64%, 25.04% 17.47%, 25.00% 6.70%, 34.31% 12.12%, 37.06% 1.70%, 44.65% 9.35%);

    position: absolute;
    top: -56px;
    right: 18%;
    width: 176px;
    height: 176px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.6rem;
    color: #fff;
    font-weight: 900;
    font-size: 0.8rem;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transform-style: preserve-3d;
    transform: rotateX(15deg) rotateY(-15deg);
    animation: sticker-float 4s ease-in-out infinite alternate;
    z-index: 100;
    isolation: isolate;
}

.sticker-seal {
    position: absolute;
    inset: 0;
    clip-path: var(--seal-clip);
    border-radius: 12px;
    z-index: 0;
    pointer-events: none;
    will-change: transform, clip-path, background-position;
    transform-origin: center;

    background-image:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 45%,
            rgba(255, 255, 255, 0.4) 48%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 0.4) 52%,
            rgba(255, 255, 255, 0) 55%,
            rgba(255, 255, 255, 0) 100%),
        conic-gradient(from 220deg,
            #fff3a6,
            #c57c00,
            #ffe68a,
            #a86400,
            #fff3a6),
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.65) 0%, transparent 45%),
        radial-gradient(circle at 50% 70%, rgba(0, 0, 0, 0.35) 0%, transparent 62%);
    background-size: 200% 200%, 100% 100%, 100% 100%, 100% 100%;
    background-position: -100% -100%, 0 0, 0 0, 0 0;
    background-repeat: no-repeat;
    animation: sticker-shine 4s ease-in-out infinite;

    filter:
        drop-shadow(1px 0 0 rgba(0, 0, 0, 0.95)) drop-shadow(-1px 0 0 rgba(0, 0, 0, 0.95)) drop-shadow(0 1px 0 rgba(0, 0, 0, 0.95)) drop-shadow(0 -1px 0 rgba(0, 0, 0, 0.95)) drop-shadow(2px 0 0 rgba(255, 208, 0, 0.95)) drop-shadow(-2px 0 0 rgba(255, 208, 0, 0.95)) drop-shadow(0 2px 0 rgba(255, 208, 0, 0.95)) drop-shadow(0 -2px 0 rgba(255, 208, 0, 0.95)) drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
}

.sticker-seal::before {
    content: '';
    position: absolute;
    inset: 0;
    clip-path: var(--seal-clip);
    background:
        repeating-conic-gradient(from 0deg,
            rgba(255, 255, 255, 0.22) 0deg 6deg,
            rgba(0, 0, 0, 0.12) 6deg 12deg),
        radial-gradient(circle at 50% 50%,
            transparent 0% 54%,
            rgba(0, 0, 0, 0.55) 54.5% 57%,
            transparent 57.5% 100%);
    opacity: 0.35;
    mix-blend-mode: overlay;
    -webkit-mask: radial-gradient(circle at 50% 50%, transparent 0 54%, #000 54.2% 58%, transparent 58.2% 100%);
    mask: radial-gradient(circle at 50% 50%, transparent 0 54%, #000 54.2% 58%, transparent 58.2% 100%);
}

.sticker-seal::after {
    content: '';
    position: absolute;
    inset: 0;
    clip-path: var(--seal-clip);
    background:
        repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.06) 0px,
            rgba(0, 0, 0, 0.06) 1px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 3px);
    opacity: 0.22;
    mix-blend-mode: soft-light;
}

.sticker-badge,
.sticker-text {
    position: relative;
    z-index: 2;
}

.sticker-badge {
    background: rgba(0, 0, 0, 0.92);
    color: #ffdf4d;
    border: 1px solid rgba(255, 223, 77, 0.35);
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 0.55rem;
    margin-bottom: 6px;
    letter-spacing: 1px;
    transform: translateZ(22px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.sticker-text {
    transform: translateZ(32px);
    text-shadow:
        0 2px 0 rgba(0, 0, 0, 0.8),
        -1px -1px 0 rgba(0, 0, 0, 1),
        1px -1px 0 rgba(0, 0, 0, 1),
        -1px 1px 0 rgba(0, 0, 0, 1),
        1px 1px 0 rgba(0, 0, 0, 1),
        0 0 10px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-weight: 900;
}

@keyframes sticker-float {
    0% {
        transform: rotateX(15deg) rotateY(-15deg) translateY(0);
    }

    100% {
        transform: rotateX(25deg) rotateY(-5deg) translateY(-15px);
    }
}

@keyframes sticker-shine {
    0% {
        background-position: -100% -100%, 0 0, 0 0, 0 0;
    }

    35% {
        background-position: 200% 200%, 0 0, 0 0, 0 0;
    }

    100% {
        background-position: 200% 200%, 0 0, 0 0, 0 0;
    }
}

@media (max-width: 768px) {
    .new-feature-sticker {
        width: 110px;
        height: 110px;
        font-size: 0.58rem;
        top: -14px;
        right: -12px;
        padding: 1.75rem;
    }

    .sticker-badge {
        font-size: 0.5rem;
        padding: 2px 6px;
        margin-bottom: 4px;
    }
}