:root {
    --primary: #ff6ad5;
    --primary-dark: #ff3eb5;
    --primary-soft: rgba(255, 106, 213, 0.2);
    --secondary: #5cfffa;
    --secondary-soft: rgba(92, 255, 250, 0.24);
    --accent: #ffe66d;
    --accent-soft: rgba(255, 230, 109, 0.28);
    --bg: #080017;
    --bg-alt: #130035;
    --surface: rgba(16, 0, 49, 0.82);
    --surface-strong: rgba(24, 0, 63, 0.92);
    --text: #fef7ff;
    --text-muted: rgba(255, 255, 255, 0.66);
    --border: rgba(255, 106, 213, 0.4);
    --shadow: 0 35px 80px rgba(10, 0, 24, 0.65);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at 12% 18%, rgba(255, 106, 213, 0.22), transparent 60%),
                radial-gradient(circle at 82% 8%, rgba(92, 255, 250, 0.25), transparent 55%),
                radial-gradient(circle at 45% 96%, rgba(255, 230, 109, 0.22), transparent 65%),
                var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 60px;
}

a {
    color: inherit;
}

a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.site-header {
    background: linear-gradient(180deg, rgba(19, 0, 64, 0.95), rgba(8, 0, 35, 0.88));
    position: relative;
    overflow: hidden;
}

/* Decorative Images */
.decorative-image {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    display: none;
}

@media (min-width: 768px) {
    .decorative-image {
        display: block;
    }
}

.decorative-image--header-1 {
    top: 10%;
    left: 5%;
    width: 120px;
    transform: rotate(-15deg);
}

.decorative-image--header-2 {
    top: 20%;
    right: 10%;
    width: 100px;
    transform: rotate(15deg);
}

.decorative-image--about-1 {
    top: 14%;
    left: -50px;
    width: 220px;
    transform: rotate(-12deg);
}

.decorative-image--about-2 {
    bottom: -60px;
    right: -40px;
    width: 200px;
    transform: rotate(18deg);
}

.decorative-image--getting-1 {
    top: -60px;
    right: -30px;
    width: 170px;
    transform: rotate(16deg);
}

.decorative-image--getting-2 {
    bottom: -50px;
    left: -40px;
    width: 190px;
    transform: rotate(-18deg);
}

.decorative-image--footer-1 {
    top: 20%;
    left: 8%;
    width: 100px;
    transform: rotate(10deg);
}

.decorative-image--footer-2 {
    bottom: 20%;
    right: 8%;
    width: 120px;
    transform: rotate(-10deg);
}

.site-header::before,
.site-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.75;
    z-index: 0;
}

.site-header::before {
    width: 420px;
    height: 420px;
    top: -160px;
    left: -120px;
    background: radial-gradient(circle, rgba(255, 106, 213, 0.55) 0%, transparent 70%);
}

.site-header::after {
    width: 360px;
    height: 360px;
    bottom: -120px;
    right: -60px;
    background: radial-gradient(circle, rgba(92, 255, 250, 0.5) 0%, transparent 70%);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(12, 0, 48, 0.78);
    border-bottom: 1px solid rgba(255, 106, 213, 0.25);
    box-shadow: 0 20px 40px rgba(10, 0, 32, 0.45);
}

.topbar,
.hero {
    position: relative;
    z-index: 1;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
}

.brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #1c0026;
    overflow: hidden;
}

.brand__pfp {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    color: var(--text-muted);
}

.main-nav a {
    text-decoration: none;
    transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn--outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn--outline:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #1c001f;
    box-shadow: 0 12px 30px rgba(255, 106, 213, 0.35);
}

.btn--solid {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #240021;
    box-shadow: 0 25px 45px rgba(255, 106, 213, 0.4);
}

.btn--solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 55px rgba(255, 106, 213, 0.5);
}

.btn--ghost {
    background: var(--surface);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.hero {
    padding: 120px 0 100px;
}

.hero__grid {
    display: grid;
    gap: 60px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.hero__content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.75rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-pop {
    background: linear-gradient(105deg, var(--accent) 0%, var(--secondary) 48%, var(--primary) 100%);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 25px rgba(92, 255, 250, 0.35);
}

.hero__content p {
    max-width: 560px;
    margin-bottom: 32px;
    color: var(--text-muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.eyebrow--pulse {
    position: relative;
    padding: 6px 18px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--primary-soft), rgba(255, 255, 255, 0.06));
    color: var(--text);
    box-shadow: 0 0 25px rgba(255, 106, 213, 0.35);
    animation: neonPulse 2.4s ease-in-out infinite;
}

.hero__burst {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero__burst--chips .chip {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.stat {
    padding: 18px;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat__label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.stat__value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
}

.hero-card {
    position: relative;
    padding: 32px;
    width: min(440px, 100%);
    border-radius: 28px;
    background: var(--surface-strong);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    z-index: 1;
}

.hero-card__tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-card__summary {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}

.hero-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.hero-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.market-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.market-panel__metric {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 4px;
}

.market-panel__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.65);
}

.market-panel__value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.22rem;
    font-weight: 600;
}

.market-panel__value--delta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1.1rem;
}

.market-panel__value--delta.is-up {
    color: #5cfffa;
}

.market-panel__value--delta.is-down {
    color: #ff6ad5;
}

.market-panel__value--delta.is-up::before {
    content: '▲';
    font-size: 0.75rem;
    opacity: 0.7;
}

.market-panel__value--delta.is-down::before {
    content: '▼';
    font-size: 0.75rem;
    opacity: 0.7;
}

.market-panel__value--delta:not(.is-up):not(.is-down)::before {
    content: '•';
    font-size: 0.8rem;
    opacity: 0.6;
}

.market-panel__updated {
    margin: 16px 0 18px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary-soft), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.chip--glow {
    background: linear-gradient(120deg, var(--primary-soft), rgba(255, 255, 255, 0.12));
    box-shadow: 0 0 18px rgba(255, 106, 213, 0.45);
}

.hero-card .glow {
    position: absolute;
    inset: auto -36% -46% -36%;
    height: 200px;
    background: radial-gradient(circle, rgba(24, 0, 63, 0.6) 0%, rgba(24, 0, 63, 0.2) 55%, transparent 82%);
    pointer-events: none;
    z-index: -1;
}

.section {
    padding: 110px 0;
}

.section--neon {
    position: relative;
    background: linear-gradient(135deg, rgba(19, 0, 64, 0.9), rgba(27, 0, 92, 0.78));
    overflow: hidden;
}

.section--neon::before,
.section--neon::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.7;
    z-index: 0;
}

.section--neon::before {
    top: -160px;
    right: -80px;
    background: radial-gradient(circle, rgba(92, 255, 250, 0.5) 0%, transparent 70%);
}

.section--neon::after {
    bottom: -180px;
    left: -120px;
    background: radial-gradient(circle, rgba(255, 230, 109, 0.45) 0%, transparent 72%);
}

.meme-section {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 60px;
}

/* Featured Carousel */
.featured-carousel {
    position: relative;
    margin: 2rem 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background: var(--surface-strong);
}

.featured-carousel__wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 480px;
    min-height: 260px;
    overflow: hidden;
}

.featured-carousel__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: radial-gradient(circle at 50% 50%, rgba(92, 255, 250, 0.12), transparent 75%),
                rgba(10, 0, 32, 0.85);
}

.featured-carousel__slide.active {
    opacity: 1;
}

.featured-carousel__slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(8, 0, 35, 0.35);
}

.featured-carousel__control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(28, 0, 38, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    color: white;
}

.featured-carousel__control:hover {
    background: rgba(255, 106, 213, 0.8);
}

.featured-carousel__control--prev {
    left: 1rem;
}

.featured-carousel__control--next {
    right: 1rem;
}

.featured-carousel__indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(10, 0, 32, 0.55);
    z-index: 10;
    width: min(90%, 360px);
}

.featured-carousel__indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.featured-carousel__indicator.active,
.featured-carousel__indicator:hover {
    background: var(--primary);
}

.meme-gallery {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: stretch;
}

.meme-card {
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(24, 0, 63, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 35px 70px rgba(10, 0, 32, 0.55);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 45px 90px rgba(18, 0, 48, 0.7);
}

.meme-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    background: radial-gradient(circle at 50% 50%, rgba(92, 255, 250, 0.18), transparent 70%);
    filter: saturate(1.1) contrast(1.05);
}

.meme-card__caption {
    padding: 26px 28px 34px;
    display: grid;
    gap: 12px;
}

.meme-card__caption h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
}

.meme-card__caption p {
    color: var(--text-muted);
}

.section--accent {
    background: rgba(3, 24, 31, 0.9);
    position: relative;
}

.section__heading {
    text-align: center;
    margin: 0 auto 60px;
    max-width: 640px;
}

.section__heading p {
    color: var(--text-muted);
}

.section__heading h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.section--spotlight {
    position: relative;
    background: radial-gradient(circle at 18% 14%, rgba(255, 106, 213, 0.28), transparent 60%),
                radial-gradient(circle at 82% 18%, rgba(92, 255, 250, 0.2), transparent 62%),
                rgba(6, 0, 24, 0.96);
    overflow: hidden;
}

.section--spotlight::before,
.section--spotlight::after {
    content: '';
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.7;
    z-index: 0;
}

.section--spotlight::before {
    top: -140px;
    left: -160px;
    background: radial-gradient(circle, rgba(255, 106, 213, 0.5) 0%, transparent 70%);
}

.section--spotlight::after {
    bottom: -160px;
    right: -100px;
    background: radial-gradient(circle, rgba(92, 255, 250, 0.45) 0%, transparent 72%);
}

.spotlight {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 56px;
    align-items: center;
}

.spotlight__text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.6rem, 5vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 22px;
}

.spotlight__text p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.spotlight__list {
    list-style: none;
    margin: 24px 0 32px;
    padding: 0;
    display: grid;
    gap: 12px;
    color: var(--text-muted);
}

.spotlight__list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spotlight__list li::before {
    content: '✦';
    color: var(--accent);
    margin-right: 10px;
}

.spotlight__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--accent);
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 230, 109, 0.5);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.spotlight__link::after {
    content: '→';
    font-size: 1rem;
    transform: translateY(-1px);
}

.spotlight__link:hover {
    color: var(--secondary);
    border-color: rgba(92, 255, 250, 0.65);
}

.spotlight__visual {
    position: relative;
    display: grid;
    justify-items: center;
    align-items: center;
}

.spotlight__frame {
    position: relative;
    width: clamp(260px, 32vw, 340px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(255, 230, 109, 0.22), rgba(255, 106, 213, 0.14));
    box-shadow: 0 30px 80px rgba(10, 0, 24, 0.55);
    overflow: hidden;
}

.spotlight__frame::before {
    content: '';
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.4) 2px, transparent 2px);
    background-size: 18px 18px;
    opacity: 0.35;
}

.spotlight__image {
    position: relative;
    width: 72%;
    border-radius: 50%;
    z-index: 1;
}

.spotlight__badge {
    position: absolute;
    top: -18px;
    right: 14%;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--secondary);
    color: #0d0030;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 18px 40px rgba(92, 255, 250, 0.35);
}

.getting-started {
    position: relative;
    z-index: 1;
    margin-top: 90px;
}

.getting-started__head {
    max-width: 640px;
    margin-bottom: 48px;
}

.getting-started__head h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4vw, 2.9rem);
    margin-top: 12px;
}

.getting-started__head p {
    color: var(--text-muted);
    margin-top: 16px;
}

.getting-started__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
}

.gs-card {
    position: relative;
    padding: 32px;
    border-radius: 24px;
    background: rgba(16, 0, 49, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gs-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 230, 109, 0.45);
    box-shadow: 0 32px 60px rgba(8, 0, 40, 0.55);
}

.gs-card__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--accent);
    color: #150022;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.gs-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
}

.gs-card p {
    color: var(--text-muted);
}

.gs-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.gs-card__cta:hover {
    background: rgba(255, 230, 109, 0.12);
    border-color: rgba(255, 230, 109, 0.65);
    color: var(--accent);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.card {
    position: relative;
    padding: 32px;
    border-radius: 24px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(10, 0, 36, 0.45);
}

.card__step {
    position: absolute;
    top: 22px;
    right: 28px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.06);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
    font-weight: 600;
}

.card p {
    color: var(--text-muted);
}

.tokenomics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.tokenomics__item {
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(24, 0, 63, 0.85);
    text-align: center;
    box-shadow: 0 20px 45px rgba(10, 0, 34, 0.55);
}

.tokenomics__item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.tokenomics__item p {
    color: var(--text-muted);
}

.timeline {
    position: relative;
    display: grid;
    gap: 32px;
    margin-top: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 14px;
    width: 2px;
    background: linear-gradient(180deg, rgba(92, 255, 250, 0.7), rgba(255, 106, 213, 0.08));
}

.timeline__item {
    position: relative;
    padding: 26px 26px 26px 54px;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline__item::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 8px rgba(255, 106, 213, 0.15);
}

.timeline__phase {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline__item h3 {
    font-size: 1.3rem;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 12px;
}

.timeline__item p {
    color: var(--text-muted);
}

.cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    background: rgba(8, 0, 32, 0.92);
    border-top: 1px solid rgba(255, 106, 213, 0.2);
    backdrop-filter: blur(14px);
    box-shadow: 0 -18px 36px rgba(6, 0, 28, 0.55);
}

.cta-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    min-height: 38px;
}

.cta-bar__label {
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cta-bar__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
}

.cta-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 0.82rem;
    line-height: 1.1;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.cta-action:hover,
.cta-action:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fefbff;
}

.cta-action:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(92, 255, 250, 0.4);
}

.cta-action--primary {
    background: rgba(255, 106, 213, 0.22);
    border-color: rgba(255, 106, 213, 0.5);
    color: var(--text);
    box-shadow: inset 0 0 0 1px rgba(92, 255, 250, 0.18);
}

.cta-action--primary:hover,
.cta-action--primary:focus-visible {
    background: rgba(255, 106, 213, 0.34);
    border-color: rgba(92, 255, 250, 0.55);
    color: #ffffff;
}

.site-footer {
    background: linear-gradient(180deg, rgba(18, 0, 52, 0.96), rgba(6, 0, 22, 0.94));
    border-top: 1px solid rgba(255, 106, 213, 0.2);
    padding: 60px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: start;
}

.brand--footer .brand__mark {
    width: 32px;
    height: 32px;
    font-size: 1rem;
}

.footer__copy {
    color: var(--text-muted);
    margin-top: 18px;
    max-width: 360px;
}

.footer__links {
    display: grid;
    gap: 12px;
}

.footer__links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.25s ease;
}

.footer__links a:hover {
    color: var(--primary);
}

.footer__meta {
    margin-top: 40px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

@keyframes neonPulse {
    0%,
    100% {
        box-shadow: 0 0 18px rgba(255, 106, 213, 0.35);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 0 28px rgba(92, 255, 250, 0.45);
        transform: translateY(-2px);
    }
}

@media (max-width: 900px) {
    .cta-bar__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .cta-bar__label {
        text-align: center;
        letter-spacing: 0.18em;
    }

    .cta-bar__actions {
        width: 100%;
        justify-content: center;
        gap: 6px;
    }

    .topbar__inner {
        padding: 16px 0;
        flex-wrap: wrap;
        justify-content: space-between;
        text-align: center;
        row-gap: 12px;
    }

    .topbar__inner > * {
        flex: 0 0 auto;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
        font-size: 0.9rem;
    }

    .hero {
        padding: 90px 0 80px;
    }

    .spotlight {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        gap: 42px;
    }

    .spotlight__text {
        max-width: 560px;
    }

    .spotlight__link {
        margin: 0 auto;
    }

    .spotlight__badge {
        position: static;
        margin-bottom: 20px;
    }

    .getting-started__head {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .meme-gallery {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 24px;
    }

    .meme-card img {
        aspect-ratio: 3 / 2;
    }

    .featured-carousel__wrapper {
        aspect-ratio: 1;
        max-height: 360px;
        min-height: 240px;
    }

    .featured-carousel__slide {
        padding: 1.25rem;
    }

    .featured-carousel__control {
        width: 44px;
        height: 44px;
    }

}

@media (max-width: 640px) {
    .cta-bar__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .cta-action {
        width: 100%;
    }

    .cta-bar__label {
        font-size: 0.74rem;
    }

    .hero-card {
        padding: 28px;
        width: 100%;
    }

    .spotlight__frame {
        width: min(280px, 68vw);
    }

    .spotlight__list {
        gap: 10px;
    }

    .getting-started__grid {
        grid-template-columns: 1fr;
    }

    .gs-card {
        padding: 28px;
    }

    .gs-card__cta {
        justify-self: start;
    }

    .market-panel {
        grid-template-columns: 1fr;
    }

    .meme-card {
        border-radius: 24px;
    }

    .meme-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline::before {
        left: 10px;
    }

    .featured-carousel__wrapper {
        min-height: 200px;
    }

    .featured-carousel__slide {
        padding: 1rem;
    }

    .featured-carousel__indicators {
        width: 100%;
        bottom: 0.5rem;
        padding: 0.3rem 0.5rem;
    }

    .timeline__item {
        padding-left: 48px;
    }

    .timeline__item::before {
        left: 2px;
    }
}

@media (max-width: 480px) {
    .cta-bar__actions {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .cta-bar__label {
        letter-spacing: 0.12em;
    }
}
