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

html {
    font-size: 16px;
}

body {
    font-family: "Inter", -apple-system, sans-serif;
    background: #100D22;
    color: #E8E4F3;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ambient__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.ambient__orb--1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(165, 143, 254, 0.25) 0%, rgba(215, 207, 255, 0.15) 100%);
    top: -15%;
    right: -10%;
}

.ambient__orb--2 {
    width: 400px;
    height: 400px;
    background: rgba(165, 143, 254, 0.12);
    bottom: -10%;
    left: 10%;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    background: rgba(16, 13, 34, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(165, 143, 254, 0.06);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__logo-mark {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, #B8A6FF 0%, #6E4FFF 100%);
    display: grid;
    place-items: center;
    color: #14102a;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.nav__logo-text {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #E8E4F3;
}

.nav__links {
    display: flex;
    gap: 3rem;
}

.nav__link {
    color: #9892A6;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link:hover {
    color: #E8E4F3;
}

.nav__cta {
    padding: 0.5625rem 1.125rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #D7CFFF;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 140px 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(184, 166, 255, 0.08);
    border: 1px solid rgba(184, 166, 255, 0.18);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #B8A6FF;
    font-weight: 500;
}

.hero-pill__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #B8A6FF;
    box-shadow: 0 0 10px #B8A6FF;
    animation: pulse 2s ease-in-out infinite;
}

.hero-heading {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    line-height: 0.98;
    letter-spacing: -0.035em;
    font-weight: 600;
    margin: 28px 0 0;
    text-wrap: balance;
    color: #ECEAF6;
}

.hero-heading__serif {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(180deg, #DCC9FF 0%, #9277FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-right: 0.18em;
    margin-right: 0.04em;
}

.nudge {
    display: inline-block;
    transform: translateY(0.04em);
}

.hero-subhead {
    margin: 22px auto 0;
    max-width: 52ch;
    color: #8A85A6;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 32px;
}

.hero-cta {
    padding: 13px 22px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
    text-decoration: none;
}

.hero-cta--primary {
    background: linear-gradient(180deg, #B8A6FF 0%, #9277FF 100%);
    color: #1a1432;
    box-shadow: 0 8px 30px rgba(146, 119, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-cta--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 36px rgba(146, 119, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-cta--ghost {
    background: transparent;
    color: #ECEAF6;
    border-color: rgba(255, 255, 255, 0.12);
}

.hero-cta--ghost:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-meta {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-top: 28px;
    font-size: 12px;
    color: #5C5778;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-meta__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #5C5778;
}

.hero-meta strong {
    color: #ECEAF6;
    font-weight: 500;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn--primary {
    background: linear-gradient(135deg, #A58FFE 0%, #D7CFFF 100%);
    color: #100D22;
    box-shadow: 0 0 0 0 rgba(165, 143, 254, 0.25);
}

.btn--primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn--primary:hover {
    box-shadow: 0 8px 32px rgba(165, 143, 254, 0.25);
    transform: translateY(-2px);
}

.btn--primary:hover svg {
    transform: translateX(4px);
}

.btn--ghost {
    background: transparent;
    color: #9892A6;
    border: 1px solid rgba(165, 143, 254, 0.08);
}

.btn--ghost:hover {
    color: #E8E4F3;
    border-color: rgba(165, 143, 254, 0.2);
    background: rgba(165, 143, 254, 0.04);
}

.metric__value {
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    color: #E8E4F3;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.metric__label {
    font-size: 0.75rem;
    color: #5E5875;
    letter-spacing: 0.02em;
    margin-top: 0.25rem;
}

.panel {
    position: relative;
    width: 380px;
    border-radius: 16px;
    overflow: hidden;
}

.panel__glass {
    position: absolute;
    inset: 0;
    background: rgba(22, 18, 46, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(165, 143, 254, 0.08);
    border-radius: 16px;
}

.panel__content {
    position: relative;
    padding: 1.5rem;
}

.panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(165, 143, 254, 0.08);
}

.panel__title {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #E8E4F3;
    letter-spacing: -0.01em;
}

.panel__indicator {
    width: 8px;
    height: 8px;
    background: #A58FFE;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.panel__signals {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.panel__footer {
    display: flex;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(165, 143, 254, 0.08);
}

.panel__stat,
.panel__time {
    font-size: 0.6875rem;
    color: #5E5875;
}

.signal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.signal-row:hover {
    background: rgba(165, 143, 254, 0.04);
}

.signal-row--new {
    animation: rowFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.signal-row__left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.signal-row__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.signal-row__tier {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: rgba(165, 143, 254, 0.1);
    color: #D7CFFF;
}

.signal-row__tier--high {
    background: rgba(165, 143, 254, 0.15);
    color: #D7CFFF;
}

.signal-row__tier--mid {
    background: rgba(165, 143, 254, 0.08);
    color: #9892A6;
}

.signal-row__tier--low {
    background: rgba(94, 88, 117, 0.2);
    color: #5E5875;
}

.signal-row__token {
    font-size: 0.875rem;
    font-weight: 500;
    color: #E8E4F3;
}

.signal-row__mc {
    font-size: 0.75rem;
    color: #9892A6;
    font-variant-numeric: tabular-nums;
}

.signal-row__change {
    font-size: 0.75rem;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.signal-row__change--up {
    color: #D7CFFF;
}

.signal-row__change--down {
    color: #5E5875;
}

.accent {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.accent--1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(165, 143, 254, 0.25) 0%, transparent 70%);
    filter: blur(60px);
    top: -60px;
    right: -40px;
}

.accent--2 {
    width: 150px;
    height: 150px;
    background: rgba(215, 207, 255, 0.15);
    filter: blur(50px);
    bottom: -40px;
    left: -30px;
}

.scroll-hint {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
}

.scroll-hint__line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, #A58FFE, transparent);
    opacity: 0.4;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
    }

    30% {
        transform: scaleY(1);
        opacity: 0.4;
    }

    70% {
        transform: scaleY(1);
        opacity: 0.4;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
    }
}

@keyframes rowFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .nav__links {
        display: none;
    }
}

/* Feed / Smart Money Table */
.feed {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 72px auto 0;
    padding: 0 40px 80px;
}

.feed-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 24px;
    flex-wrap: wrap;
}

.feed-head__lhs {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feed-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #B8A6FF;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6EE7A8;
    box-shadow: 0 0 8px #6EE7A8;
    animation: pulse 1.6s ease-in-out infinite;
}

.feed-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: #ECEAF6;
}

.feed-title__muted {
    color: #8A85A6;
    font-weight: 400;
}

.feed-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 4px;
}

.feed-tab {
    padding: 7px 14px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 500;
    color: #8A85A6;
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: inherit;
    transition: all 0.15s ease;
}

.feed-tab.active {
    background: rgba(184, 166, 255, 0.12);
    color: #ECEAF6;
}

.feed-tab:not(.active):hover {
    color: #ECEAF6;
}

.table-wrap {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(6px);
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.table-wrap table {
    width: 100%;
    border-collapse: collapse;
}

.table-wrap thead th {
    text-align: left;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5C5778;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.015);
    font-family: 'JetBrains Mono', monospace;
}

.table-wrap thead th.col-num {
    text-align: right;
}

.table-wrap tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 14px;
    vertical-align: middle;
    color: #ECEAF6;
}

.table-wrap tbody tr:last-child td {
    border-bottom: none;
}

.table-wrap tbody tr {
    transition: background 0.15s ease;
}

.table-wrap tbody tr:hover {
    background: rgba(184, 166, 255, 0.04);
}

.row-fresh td {
    animation: rowHighlight 4s ease-out forwards;
}

@keyframes rowHighlight {
    0% {
        background: rgba(110, 231, 168, 0.10);
    }

    100% {
        background: transparent;
    }
}

.wallet-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wallet-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    color: #1a1432;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.wallet-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wallet-name {
    font-weight: 500;
    font-size: 14px;
    color: #ECEAF6;
}

.wallet-addr {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #5C5778;
}

.badge-buy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
    background: rgba(110, 231, 168, 0.10);
    color: #6EE7A8;
    border: 1px solid rgba(110, 231, 168, 0.20);
    white-space: nowrap;
}

.token-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.token-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    color: #1a1432;
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.token-name {
    font-weight: 500;
    color: #ECEAF6;
}

.token-sym {
    color: #8A85A6;
    font-size: 12px;
    margin-left: 4px;
    font-family: 'JetBrains Mono', monospace;
}

.col-num {
    font-family: 'JetBrains Mono', monospace;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.num-primary {
    color: #ECEAF6;
    font-weight: 500;
    font-size: 14px;
}

.num-sub {
    color: #5C5778;
    font-size: 11px;
    margin-top: 2px;
}

.col-time {
    font-size: 12px;
    color: #8A85A6;
}

.col-green {
    color: #6EE7A8;
}

.table-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 12px;
    color: #8A85A6;
    font-family: 'JetBrains Mono', monospace;
}

.table-foot__stats {
    display: flex;
    gap: 24px;
}

.table-foot strong {
    color: #ECEAF6;
    font-weight: 500;
}

.table-foot a {
    color: #B8A6FF;
    text-decoration: none;
}

.table-foot a:hover {
    text-decoration: underline;
}

@media (max-width: 880px) {
    .feed {
        padding: 0 20px 60px;
        margin-top: 56px;
    }

    .feed-head {
        align-items: flex-start;
    }

    .col-hide {
        display: none;
    }

    .table-wrap thead th,
    .table-wrap tbody td {
        padding: 12px 14px;
    }

    .hero-meta {
        flex-wrap: wrap;
        gap: 14px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 120px 20px 40px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .feed-tabs {
        display: none;
    }
}

.proof {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.proof__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.proof__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #A58FFE;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.proof__title {
    font-family: "Inter", -apple-system, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: #E8E4F3;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.proof__title em {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    background: linear-gradient(135deg, #A58FFE 0%, #D7CFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.proof__desc {
    font-size: 1rem;
    color: #9892A6;
    line-height: 1.7;
}

.proof__carousel {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

.proof__track {
    overflow: hidden;
    padding: 0.75rem 0;
}

.proof__track--left {
    margin-bottom: 0.5rem;
}

.proof__slides {
    display: flex;
    gap: 1rem;
    width: -moz-fit-content;
    width: fit-content;
    will-change: transform;
}

.proof__slide {
    flex-shrink: 0;
    width: 320px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    background: #16122e;
    border: 1px solid rgba(165, 143, 254, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.proof__slide:hover {
    transform: scale(1.02);
    border-color: rgba(165, 143, 254, 0.2);
}

.proof__slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.proof__fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    pointer-events: none;
    z-index: 10;
}

.proof__fade--left {
    left: 0;
    background: linear-gradient(to right, #100D22 0%, transparent 100%);
}

.proof__fade--right {
    right: 0;
    background: linear-gradient(to left, #100D22 0%, transparent 100%);
}

.proof__nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.proof__arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(165, 143, 254, 0.06);
    border: 1px solid rgba(165, 143, 254, 0.08);
    border-radius: 50%;
    color: #9892A6;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.proof__arrow svg {
    width: 20px;
    height: 20px;
}

.proof__arrow:hover {
    background: rgba(165, 143, 254, 0.12);
    border-color: rgba(165, 143, 254, 0.2);
    color: #E8E4F3;
}

.proof__arrow:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .proof {
        padding: 5rem 0;
    }

    .proof__header {
        margin-bottom: 3rem;
    }

    .proof__slide {
        width: 260px;
        height: 146px;
    }

    .proof__fade {
        width: 60px;
    }
}

.features {
    padding: 8rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features__header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 4rem;
}

.features__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #A58FFE;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.features__title {
    font-family: "Inter", -apple-system, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: #E8E4F3;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.features__title em {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    background: linear-gradient(135deg, #A58FFE 0%, #D7CFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features__desc {
    font-size: 1rem;
    color: #9892A6;
    line-height: 1.7;
}

.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
}

.bento__card {
    background: rgba(22, 18, 46, 0.5);
    border: 1px solid rgba(165, 143, 254, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.bento__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(165, 143, 254, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.bento__card:hover {
    border-color: rgba(165, 143, 254, 0.2);
    transform: translateY(-4px);
}

.bento__card:hover::before {
    opacity: 1;
}

.bento__card--lg {
    grid-column: span 2;
    grid-row: span 2;
    padding: 2rem;
}

.bento__card--md {
    grid-column: span 2;
}

.bento__card--sm {
    grid-column: span 1;
}

.bento__visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    margin-bottom: 1.5rem;
}

.bento__content {
    position: relative;
    z-index: 1;
}

.bento__title {
    font-size: 1rem;
    font-weight: 600;
    color: #E8E4F3;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.bento__text {
    font-size: 0.875rem;
    color: #9892A6;
    line-height: 1.6;
}

.algo-viz {
    position: relative;
    width: 200px;
    height: 160px;
}

.algo-viz__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    opacity: 0.3;
}

.algo-viz__grid span {
    width: 24px;
    height: 24px;
    background: rgba(165, 143, 254, 0.08);
    border-radius: 4px;
    transition: all 0.3s;
}

.algo-viz__scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #A58FFE, transparent);
    animation: scanDown 3s ease-in-out infinite;
}

.algo-viz__nodes {
    position: absolute;
    inset: 0;
}

.algo-viz__node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #A58FFE;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(165, 143, 254, 0.25);
}

.algo-viz__node--1 {
    top: 20%;
    left: 30%;
    animation: nodePulse 2s ease-in-out infinite;
}

.algo-viz__node--2 {
    top: 50%;
    left: 70%;
    animation: nodePulse 2s ease-in-out infinite 0.5s;
}

.algo-viz__node--3 {
    top: 75%;
    left: 45%;
    animation: nodePulse 2s ease-in-out infinite 1s;
}

.bento__card[data-feature=algo]:hover .algo-viz__grid span:nth-child(7),
.bento__card[data-feature=algo]:hover .algo-viz__grid span:nth-child(13),
.bento__card[data-feature=algo]:hover .algo-viz__grid span:nth-child(19) {
    background: #A58FFE;
    opacity: 0.6;
}

@keyframes scanDown {

    0%,
    100% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes nodePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.signal-tiers {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 180px;
}

.signal-tier {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    background: rgba(165, 143, 254, 0.04);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.signal-tier__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: box-shadow 0.3s;
}

.signal-tier__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #9892A6;
    transition: color 0.3s;
}

.signal-tier--diamond .signal-tier__dot {
    background: #D7CFFF;
}

.signal-tier--bullish .signal-tier__dot {
    background: #A58FFE;
}

.signal-tier--trench .signal-tier__dot {
    background: #5E5875;
}

.bento__card[data-feature=signals]:hover .signal-tier {
    border-color: rgba(165, 143, 254, 0.08);
}

.bento__card[data-feature=signals]:hover .signal-tier--diamond {
    border-color: rgba(215, 207, 255, 0.3);
}

.bento__card[data-feature=signals]:hover .signal-tier--diamond .signal-tier__dot {
    box-shadow: 0 0 12px rgba(215, 207, 255, 0.6);
}

.bento__card[data-feature=signals]:hover .signal-tier--diamond .signal-tier__label {
    color: #D7CFFF;
}

.bento__card[data-feature=signals]:hover .signal-tier--bullish {
    border-color: rgba(165, 143, 254, 0.3);
}

.bento__card[data-feature=signals]:hover .signal-tier--bullish .signal-tier__dot {
    box-shadow: 0 0 12px rgba(165, 143, 254, 0.25);
}

.bento__card[data-feature=signals]:hover .signal-tier--bullish .signal-tier__label {
    color: #A58FFE;
}

.pulse-ring {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring__core {
    width: 16px;
    height: 16px;
    background: #A58FFE;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.pulse-ring__wave {
    position: absolute;
    border: 1px solid #A58FFE;
    border-radius: 50%;
    opacity: 0;
}

.pulse-ring__wave--1 {
    width: 32px;
    height: 32px;
    animation: waveExpand 2s ease-out infinite;
}

.pulse-ring__wave--2 {
    width: 32px;
    height: 32px;
    animation: waveExpand 2s ease-out infinite 0.6s;
}

.pulse-ring__wave--3 {
    width: 32px;
    height: 32px;
    animation: waveExpand 2s ease-out infinite 1.2s;
}

@keyframes waveExpand {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.winrate-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    text-align: center;
}

.winrate-display__value {
    font-size: 2.5rem;
    font-weight: 600;
    color: #E8E4F3;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.winrate-display__symbol {
    font-size: 1.25rem;
    color: #A58FFE;
    font-weight: 500;
}

.winrate-display__bar {
    width: 100%;
    height: 4px;
    background: rgba(165, 143, 254, 0.1);
    border-radius: 2px;
    margin-top: 0.75rem;
    overflow: hidden;
}

.winrate-display__fill {
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #A58FFE 0%, #D7CFFF 100%);
    border-radius: 2px;
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento__card[data-feature=winrate]:hover .winrate-display__fill {
    width: 42%;
}

.wallet-labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
    width: 100%;
    max-width: 220px;
}

.wallet-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(165, 143, 254, 0.04);
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wallet-label__icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.wallet-label__icon::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

.wallet-label__icon--elite::before {
    background: #D7CFFF;
}

.wallet-label__icon--sniper::before {
    background: #A58FFE;
}

.wallet-label__icon--whale::before {
    background: #9892A6;
}

.wallet-label__icon--holder::before {
    background: #5E5875;
}

.wallet-label__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.wallet-label__icon--elite::after {
    background: #D7CFFF;
}

.wallet-label__icon--sniper::after {
    background: #A58FFE;
}

.wallet-label__icon--whale::after {
    background: #9892A6;
}

.wallet-label__icon--holder::after {
    background: #5E5875;
}

.wallet-label__name {
    font-size: 0.6875rem;
    color: #9892A6;
    white-space: nowrap;
}

.bento__card[data-feature=labels]:hover .wallet-label {
    border-color: rgba(165, 143, 254, 0.08);
}

.bento__card[data-feature=labels]:hover .wallet-label:nth-child(1) {
    transform: translateX(4px);
}

.bento__card[data-feature=labels]:hover .wallet-label:nth-child(2) {
    transform: translateX(-4px);
    transition-delay: 0.05s;
}

.bento__card[data-feature=labels]:hover .wallet-label:nth-child(3) {
    transform: translateX(4px);
    transition-delay: 0.1s;
}

.bento__card[data-feature=labels]:hover .wallet-label:nth-child(4) {
    transform: translateX(-4px);
    transition-delay: 0.15s;
}

.filter-anim {
    position: relative;
    width: 160px;
    height: 100px;
}

.filter-anim__wallets {
    display: flex;
    gap: 8px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.filter-anim__wallet {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-anim__wallet--pass {
    background: #A58FFE;
}

.filter-anim__wallet--fail {
    background: #5E5875;
    opacity: 0.4;
}

.filter-anim__gate {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: rgba(165, 143, 254, 0.08);
}

.filter-anim__gate::before,
.filter-anim__gate::after {
    content: "";
    position: absolute;
    top: -8px;
    width: 2px;
    height: 18px;
    background: rgba(165, 143, 254, 0.08);
}

.filter-anim__gate::before {
    left: 0;
}

.filter-anim__gate::after {
    right: 0;
}

.filter-anim__bar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #A58FFE, transparent);
    opacity: 0;
}

.bento__card[data-feature=filter]:hover .filter-anim__bar {
    animation: filterScan 1.5s ease-in-out infinite;
}

.bento__card[data-feature=filter]:hover .filter-anim__wallet--fail {
    opacity: 0.15;
    transform: translateY(10px);
}

.bento__card[data-feature=filter]:hover .filter-anim__wallet--pass {
    box-shadow: 0 0 12px rgba(165, 143, 254, 0.25);
}

@keyframes filterScan {

    0%,
    100% {
        opacity: 0;
        top: 20%;
    }

    50% {
        opacity: 1;
        top: 80%;
    }
}

.trending-feed {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 200px;
}

.trending-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 1rem;
    background: rgba(165, 143, 254, 0.03);
    border-radius: 8px;
    border-left: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
}

.trending-item__token {
    font-size: 0.875rem;
    font-weight: 500;
    color: #E8E4F3;
}

.trending-item__change {
    font-size: 0.75rem;
    font-weight: 500;
    color: #D7CFFF;
    font-variant-numeric: tabular-nums;
}

.bento__card[data-feature=trending]:hover .trending-item {
    opacity: 1;
    border-left-color: #A58FFE;
}

.bento__card[data-feature=trending]:hover .trending-item--1 {
    transform: translateX(8px);
    transition-delay: 0s;
}

.bento__card[data-feature=trending]:hover .trending-item--2 {
    transform: translateX(8px);
    transition-delay: 0.05s;
}

.bento__card[data-feature=trending]:hover .trending-item--3 {
    transform: translateX(8px);
    transition-delay: 0.1s;
}

.bento__card[data-feature=trending]:hover .trending-item--4 {
    transform: translateX(8px);
    transition-delay: 0.15s;
}

@media (max-width: 1024px) {
    .features {
        padding: 6rem 2rem;
    }

    .bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento__card--lg {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bento__card--sm {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .features {
        padding: 5rem 1.5rem;
    }

    .bento {
        grid-template-columns: 1fr;
    }

    .bento__card--lg,
    .bento__card--md,
    .bento__card--sm {
        grid-column: span 1;
        grid-row: span 1;
    }

    .algo-viz {
        transform: scale(0.85);
    }
}

.pricing {
    padding: 8rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing__header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 4rem;
}

.pricing__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #A58FFE;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pricing__title {
    font-family: "Inter", -apple-system, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: #E8E4F3;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.pricing__title em {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    background: linear-gradient(135deg, #A58FFE 0%, #D7CFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing__desc {
    font-size: 1rem;
    color: #9892A6;
    line-height: 1.7;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing__card {
    position: relative;
    background: rgba(22, 18, 46, 0.5);
    border: 1px solid rgba(165, 143, 254, 0.08);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing__card:hover {
    border-color: rgba(165, 143, 254, 0.2);
    transform: translateY(-4px);
}

.pricing__card--popular {
    border-color: rgba(165, 143, 254, 0.3);
    background: rgba(22, 18, 46, 0.7);
}

.pricing__card--popular:hover {
    border-color: rgba(165, 143, 254, 0.5);
}

.pricing__card-inner {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.pricing__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, #A58FFE 0%, #D7CFFF 100%);
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #100D22;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing__glow {
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(165, 143, 254, 0.15) 0%, transparent 50%);
    border-radius: 16px;
    pointer-events: none;
    opacity: 0.5;
}

.pricing__card-header {
    margin-bottom: 1.5rem;
}

.pricing__plan-name {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #E8E4F3;
    margin-bottom: 0.25rem;
}

.pricing__plan-desc {
    font-size: 0.8125rem;
    color: #5E5875;
}

.pricing__price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pricing__amount {
    font-size: 3rem;
    font-weight: 600;
    color: #E8E4F3;
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing__currency {
    display: flex;
    flex-direction: column;
}

.pricing__sol {
    font-size: 1rem;
    font-weight: 600;
    color: #D7CFFF;
}

.pricing__period {
    font-size: 0.75rem;
    color: #5E5875;
}

.pricing__savings {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: rgba(165, 143, 254, 0.1);
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #D7CFFF;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.pricing__features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #9892A6;
    border-bottom: 1px solid rgba(165, 143, 254, 0.04);
}

.pricing__feature:last-child {
    border-bottom: none;
}

.pricing__feature-icon {
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
}

.pricing__feature-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(165, 143, 254, 0.15);
    border-radius: 50%;
}

.pricing__feature-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #A58FFE;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.pricing__cta {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(165, 143, 254, 0.2);
    border-radius: 8px;
    color: #E8E4F3;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing__cta:hover {
    background: rgba(165, 143, 254, 0.08);
    border-color: #A58FFE;
}

.pricing__cta--primary {
    background: linear-gradient(135deg, #A58FFE 0%, #D7CFFF 100%);
    border: none;
    color: #100D22;
}

.pricing__cta--primary:hover {
    box-shadow: 0 8px 32px rgba(165, 143, 254, 0.25);
    transform: translateY(-2px);
}

.pricing__note {
    text-align: center;
    font-size: 0.8125rem;
    color: #5E5875;
    margin-top: 3rem;
}

@media (max-width: 900px) {
    .pricing {
        padding: 6rem 2rem;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing__card--popular {
        order: -1;
    }
}

@media (max-width: 640px) {
    .pricing {
        padding: 5rem 1.5rem;
    }
}

.cta {
    position: relative;
    padding: 10rem 4rem;
    overflow: hidden;
    perspective: 1000px;
}

.cta__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta__orb--1 {
    width: 500px;
    height: 500px;
    background: rgba(165, 143, 254, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta__orb--2 {
    width: 300px;
    height: 300px;
    background: rgba(215, 207, 255, 0.15);
    top: 20%;
    right: 10%;
}

.cta__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(165, 143, 254, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(165, 143, 254, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
}

.cta__container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 10;
    transform-style: preserve-3d;
}

.cta__content {
    text-align: center;
    transform-style: preserve-3d;
}

.cta__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #A58FFE;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    transform: translateZ(40px);
}

.cta__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    transform: translateZ(30px);
}

.cta__line {
    display: block;
    overflow: hidden;
}

.cta__word {
    display: inline-block;
    color: #E8E4F3;
}

.cta__word--serif {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    background: linear-gradient(135deg, #A58FFE 0%, #D7CFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta__desc {
    font-size: 1.125rem;
    color: #9892A6;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    transform: translateZ(20px);
}

.cta__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    transform: translateZ(50px);
}

.cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.cta__btn--primary {
    background: linear-gradient(135deg, #A58FFE 0%, #D7CFFF 100%);
    color: #100D22;
    box-shadow: 0 4px 24px rgba(165, 143, 254, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.cta__btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(165, 143, 254, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.cta__btn--primary:hover .cta__btn-icon {
    transform: translateX(4px);
}

.cta__btn--primary:hover .cta__btn-shine {
    left: 120%;
}

.cta__btn--secondary {
    background: rgba(165, 143, 254, 0.06);
    border: 1px solid rgba(165, 143, 254, 0.2);
    color: #E8E4F3;
}

.cta__btn--secondary:hover {
    background: rgba(165, 143, 254, 0.1);
    border-color: #A58FFE;
    transform: translateY(-2px);
}

.cta__btn-text {
    position: relative;
    z-index: 1;
}

.cta__btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.cta__btn-icon svg {
    width: 100%;
    height: 100%;
}

.cta__btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: skewX(-20deg);
}

.cta__trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateZ(10px);
}

.cta__trust-item {
    text-align: center;
}

.cta__trust-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #E8E4F3;
    letter-spacing: -0.01em;
}

.cta__trust-label {
    font-size: 0.6875rem;
    color: #5E5875;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta__trust-divider {
    width: 1px;
    height: 32px;
    background: rgba(165, 143, 254, 0.08);
}

.cta__floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.cta__float {
    position: absolute;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 18, 46, 0.8);
    border: 1px solid rgba(165, 143, 254, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    color: #D7CFFF;
    opacity: 0;
    transform: translateZ(60px);
}

.cta__float--1 {
    top: 20%;
    left: 15%;
}

.cta__float--2 {
    top: 30%;
    right: 12%;
}

.cta__float--3 {
    bottom: 25%;
    left: 20%;
}

.cta__float-icon {
    width: 20px;
    height: 20px;
}

.cta__float-icon svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .cta {
        padding: 6rem 1.5rem;
    }

    .cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .cta__actions .cta__btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .cta__trust {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .cta__trust-divider {
        display: none;
    }

    .cta__float {
        display: none;
    }
}

.footer {
    padding: 2rem 4rem;
    border-top: 1px solid rgba(165, 143, 254, 0.08);
    background: rgba(16, 13, 34, 0.5);
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.footer__logo {
    width: 24px;
    height: 24px;
}

.footer__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #E8E4F3;
    letter-spacing: -0.01em;
}

.footer__center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.footer__copy {
    font-size: 0.75rem;
    color: #5E5875;
}

.footer__social {
    display: flex;
    align-items: center;
}

.footer__link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9892A6;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__link svg {
    width: 18px;
    height: 18px;
}

.footer__link:hover {
    color: #E8E4F3;
    background: rgba(165, 143, 254, 0.08);
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem;
    }

    .footer__inner {
        flex-direction: column;
        gap: 1rem;
    }

    .footer__center {
        position: static;
        transform: none;
        order: 3;
    }
}

/*# sourceMappingURL=styles.css.map */.badge-sell { display:inline-flex; align-items:center; gap:6px; padding:4px 10px; border-radius:6px; font-size:11px; font-weight:500; font-family:"JetBrains Mono",monospace; letter-spacing:0.04em; background:rgba(255,122,138,0.10); color:#FF7A8A; border:1px solid rgba(255,122,138,0.20); white-space:nowrap; }
