/* =========================================
   LikeAndTalk — 3D Scroll-Driven Experience
   ========================================= */

/* ========================
   CSS Custom Properties
   ======================== */
:root {
    --bg-base: #050510;
    --bg-elevated: #0a0a1a;
    --bg-card: rgba(15, 15, 30, 0.8);
    --bg-card-solid: #0f0f1e;
    --primary: #8f69fe;
    --primary-shade: #6a4dc7;
    --primary-glow: rgba(143, 105, 254, 0.3);
    --secondary: #3dc2ff;
    --secondary-glow: rgba(61, 194, 255, 0.2);
    --accent: #c4b5fd;
    --white: #f0f0f5;
    --text-primary: #e8e8f0;
    --text-secondary: rgba(232, 232, 240, 0.6);
    --text-dim: rgba(232, 232, 240, 0.35);
    --border-subtle: rgba(143, 105, 254, 0.12);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --section-padding: 7rem;
    --section-padding-mobile: 5rem;
    --card-radius: 20px;
    --card-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    --card-shadow-hover: 0 12px 50px rgba(143, 105, 254, 0.2);
}

/* ========================
   Reset & Base
   ======================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    color: var(--white);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================
   WebGL Canvas
   ======================== */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ========================
   Panel Layout
   ======================== */
.panel {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.panel-marquee {
    min-height: auto;
    padding: 0;
}

.panel-stats {
    min-height: auto;
    padding: 5rem 0;
}

/* ========================
   Side Navigation
   ======================== */
.side-nav {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.side-nav-dot {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s var(--ease-out-expo);
    cursor: pointer;
    text-decoration: none;
}

.side-nav-dot:hover {
    background: rgba(143, 105, 254, 0.5);
    border-color: var(--primary);
    transform: scale(1.3);
}

.side-nav-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
    transform: scale(1.2);
}

.side-nav-label {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.side-nav-dot:hover .side-nav-label {
    opacity: 1;
}

/* ========================
   Scroll Progress (mobile)
   ======================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 101;
    display: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* ========================
   Gradient Text
   ======================== */
.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #c4b5fd 40%, #3dc2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================
   Eyebrow Labels
   ======================== */
.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    background: rgba(143, 105, 254, 0.15);
    color: var(--accent);
    margin-bottom: 1.25rem;
}

/* ========================
   Section Typography
   ======================== */
.section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================
   Floating Depth Blobs
   ======================== */
.depth-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.4;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(143, 105, 254, 0.25), transparent 70%);
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(61, 194, 255, 0.2), transparent 70%);
    bottom: -5%;
    right: -5%;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(143, 105, 254, 0.15), transparent 70%);
    top: 40%;
    right: 20%;
}

.blob-4 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(143, 105, 254, 0.2), transparent 70%);
    bottom: -10%;
    left: 30%;
}

.blob-5 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(61, 194, 255, 0.15), transparent 70%);
    top: -5%;
    right: -5%;
}

.blob-6 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(143, 105, 254, 0.2), transparent 70%);
    top: 20%;
    left: -10%;
}

.blob-7 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(61, 194, 255, 0.15), transparent 70%);
    top: -8%;
    left: 60%;
}

.blob-8 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(143, 105, 254, 0.18), transparent 70%);
    bottom: -5%;
    right: -8%;
}

.blob-9 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(61, 194, 255, 0.12), transparent 70%);
    top: 15%;
    left: -12%;
}

.blob-10 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(143, 105, 254, 0.15), transparent 70%);
    bottom: 10%;
    right: -6%;
}

/* ========================
   HERO SECTION
   ======================== */
.panel-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 80px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 2px 16px rgba(143, 105, 254, 0.4));
}

.hero-heading {
    color: var(--white);
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.hero-heading .word {
    display: inline-block;
    overflow: hidden;
}

.hero-heading .word-inner {
    display: inline-block;
}

.hero-sub {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll Indicator */
.scroll-indicator {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.scroll-indicator-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    font-weight: 600;
}

.scroll-indicator-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ========================
   Newsletter Form (shared)
   ======================== */
.hero-form,
.cta-form {
    max-width: 480px;
    margin: 0 auto;
}

.form-inline-group {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-inline-group:focus-within {
    border-color: rgba(143, 105, 254, 0.5);
    box-shadow: 0 0 0 4px rgba(143, 105, 254, 0.15);
}

.form-field {
    position: relative;
    flex: 1;
}

.form-control-input {
    display: block;
    width: 100%;
    padding: 1.1rem 1.5rem 0.6rem;
    border: none;
    background: transparent;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.5;
    outline: none;
    -webkit-appearance: none;
}

.form-control-input::placeholder {
    color: transparent;
}

.label-control {
    position: absolute;
    top: 0.95rem;
    left: 1.5rem;
    color: var(--text-dim);
    font-size: 0.9rem;
    pointer-events: none;
    transition: all 0.2s ease;
}

.form-control-input:focus + .label-control,
.form-control-input.notEmpty + .label-control {
    top: 0.3rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.btn-subscribe {
    flex-shrink: 0;
    padding: 0 1.75rem;
    border: none;
    border-radius: 0 50px 50px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
}

.btn-subscribe:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* ========================
   LANGUAGE MARQUEE
   ======================== */
.language-marquee {
    background: rgba(143, 105, 254, 0.08);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.85rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.marquee-content {
    display: flex;
    gap: 0;
    flex-shrink: 0;
}

.marquee-content span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 0 1.25rem;
    letter-spacing: 0.02em;
}

.marquee-content span:not(:last-child)::after {
    content: '\00b7';
    margin-left: 1.25rem;
    opacity: 0.4;
}

/* marquee driven by JS via gsap.ticker */

/* ========================
   PROBLEM SECTION
   ======================== */
.panel-problem {
    background: transparent;
}

.contrast-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
    perspective: 800px;
}

.contrast-card {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--card-radius);
    padding: 2.25rem 1.75rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: box-shadow 0.5s var(--ease-out-expo);
    /* NO opacity:0 here — GSAP sets initial state */
}

.contrast-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--card-radius);
    padding: 1.5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.contrast-card:hover::before {
    opacity: 1;
}

.contrast-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.contrast-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.contrast-old {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ff6b6b;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.contrast-new {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.contrast-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================
   SOLUTION SECTION
   ======================== */
.panel-solution {
    background: transparent;
    overflow: visible;
}

.solution-header {
    margin-bottom: 2rem;
}

.pillars-track {
    overflow: hidden;
    width: 100%;
}

.pillars-inner {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.pillar-card {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--card-radius);
    padding: 2.25rem 2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: box-shadow 0.5s var(--ease-out-expo);
    transform-style: preserve-3d;
    width: 320px;
    flex-shrink: 0;
}

.pillar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--card-radius);
    padding: 1.5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.35rem;
    transition: transform 0.3s var(--ease-out-expo);
}

.pillar-card:hover .pillar-icon {
    transform: rotate(8deg) scale(1.05);
}

.pillar-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.pillar-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================
   FEATURES (BENTO) SECTION
   ======================== */
.panel-features {
    background: transparent;
    min-height: auto;
    padding: var(--section-padding) 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
    margin-top: 1rem;
}

.bento-card {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--card-radius);
    padding: 2rem 1.75rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-subtle);
    transition: box-shadow 0.5s var(--ease-out-expo);
    overflow: hidden;
    transform-style: preserve-3d;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--card-radius);
    padding: 1.5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 2.5rem 2.25rem;
}

.bento-wide {
    grid-column: span 2;
}

.bento-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.35rem;
    transition: transform 0.3s var(--ease-out-expo);
}

.bento-card:hover .bento-icon {
    transform: rotate(8deg) scale(1.05);
}

.bento-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.bento-large h3 {
    font-size: 1.5rem;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

.bento-large p {
    font-size: 1rem;
    max-width: 320px;
}

/* ========================
   HOW IT WORKS
   ======================== */
.panel-how {
    background: transparent;
}

.steps-container {
    position: relative;
    margin-top: 2rem;
}

.steps-line {
    position: absolute;
    top: 32px;
    left: 64px;
    right: 64px;
    height: 2px;
    z-index: 0;
}

.steps {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 20px rgba(143, 105, 254, 0.25);
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================
   STATS SECTION
   ======================== */
.panel-stats {
    background: linear-gradient(135deg, rgba(77, 48, 157, 0.3), rgba(143, 105, 254, 0.15));
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================
   SOCIALFI SECTION
   ======================== */
.panel-socialfi {
    background: transparent;
}

.socialfi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.socialfi-content .eyebrow {
    background: rgba(143, 105, 254, 0.2);
    color: var(--accent);
}

.socialfi-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.socialfi-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.socialfi-points li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.socialfi-points .point-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.socialfi-points h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.socialfi-points p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* Token Visual */
.socialfi-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    perspective: 800px;
}

.token-ring {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 2px solid rgba(143, 105, 254, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: tokenPulse 4s ease-in-out infinite;
}

.token-ring::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(143, 105, 254, 0.15);
    animation: tokenPulse 4s ease-in-out infinite reverse;
}

.token-ring::after {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    border: 1px solid rgba(143, 105, 254, 0.08);
}

.token-core {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 0 60px rgba(143, 105, 254, 0.4);
    transform-style: preserve-3d;
    animation: tokenGlow 4s ease-in-out infinite;
}

.token-symbol {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.05em;
}

.token-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

@keyframes tokenPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@keyframes tokenGlow {
    0%, 100% { box-shadow: 0 0 60px rgba(143, 105, 254, 0.4); }
    50% { box-shadow: 0 0 80px rgba(143, 105, 254, 0.6); }
}

/* Floating particles around token */
.token-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.token-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.4;
}

.token-particle:nth-child(1) { top: 10%; left: 20%; animation: tokenFloat 6s ease-in-out infinite; }
.token-particle:nth-child(2) { top: 60%; left: 10%; animation: tokenFloat 8s ease-in-out infinite 1s; }
.token-particle:nth-child(3) { top: 20%; right: 15%; animation: tokenFloat 7s ease-in-out infinite 2s; }
.token-particle:nth-child(4) { bottom: 20%; right: 20%; animation: tokenFloat 5s ease-in-out infinite 0.5s; }
.token-particle:nth-child(5) { top: 50%; right: 5%; animation: tokenFloat 9s ease-in-out infinite 3s; }

@keyframes tokenFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-12px) scale(1.3); opacity: 0.8; }
}

/* ========================
   MANIFESTO SECTION
   ======================== */
.panel-manifesto {
    background: transparent;
    padding: 8rem 0;
    text-align: center;
}

.panel-manifesto .eyebrow {
    background: rgba(143, 105, 254, 0.2);
    color: var(--accent);
}

.manifesto-text {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: -0.02em;
    color: var(--text-dim);
}

.manifesto-text .m-word {
    display: inline;
    transition: color 0.3s;
}

.manifesto-text .m-word.lit {
    color: var(--white);
}

.manifesto-text .gradient-text .m-word.lit {
    background: linear-gradient(135deg, #c4b5fd 0%, #3dc2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.manifesto-break {
    display: block;
    height: 1.5rem;
}

/* ========================
   COMMUNITY SECTION
   ======================== */
.panel-community {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    color: var(--white);
}

.community-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
    will-change: transform;
}

.community-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 5, 16, 0.7), rgba(143, 105, 254, 0.3));
}

.community-content {
    position: relative;
    z-index: 1;
}

.panel-community h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.community-text {
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.btn-outline {
    display: inline-block;
    padding: 0.85rem 2.25rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================
   CTA SECTION
   ======================== */
.panel-cta {
    background: transparent;
    padding-bottom: 0;
    justify-content: flex-start;
    padding-top: var(--section-padding);
}

.panel-cta h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-social {
    margin-top: 2rem;
}

.cta-social a {
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.cta-social a:hover {
    color: var(--white);
}

.cta-social i {
    margin-right: 0.35rem;
}

/* ========================
   FOOTER
   ======================== */
.footer {
    padding: 4rem 0 2.5rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-logo {
    width: 40px;
    margin-bottom: 0.75rem;
    opacity: 0.4;
}

.footer-copy {
    color: var(--text-dim);
    font-size: 0.8rem;
    margin: 0;
}

/* ========================
   No WebGL Fallback
   ======================== */
.no-webgl #bg-canvas {
    display: none;
}

.no-webgl body {
    background: linear-gradient(135deg, #050510 0%, #0d0628 50%, #050510 100%);
}

/* ========================
   GPU Compositing Hints
   ======================== */
.bento-card,
.contrast-card {
    will-change: transform;
}

/* ========================
   Card Tilt (hover)
   ======================== */
@media (hover: hover) {
    .bento-card,
    .pillar-card,
    .contrast-card {
        perspective: 600px;
    }

    .tilt-active {
        transition: transform 0.15s ease-out;
    }
}

/* ========================
   Reduced Motion
   ======================== */
/* prefers-reduced-motion: intentionally ignored — animations are core to the experience */

/* ========================
   RESPONSIVE: Mobile
   ======================== */
@media (max-width: 767px) {
    .side-nav {
        display: none;
    }

    .scroll-progress {
        display: block;
    }

    .panel {
        min-height: auto;
        padding: var(--section-padding-mobile) 0;
    }

    .panel-hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .scroll-indicator {
        display: none;
    }

    .form-inline-group {
        flex-direction: column;
        border-radius: 16px;
    }

    .form-control-input {
        padding: 1rem 1.25rem 0.6rem;
    }

    .label-control {
        left: 1.25rem;
    }

    .btn-subscribe {
        border-radius: 0 0 16px 16px;
        padding: 1rem 1.75rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .contrast-cards {
        grid-template-columns: 1fr;
        perspective: none;
    }

    .pillars-inner {
        flex-direction: column;
        width: 100%;
    }

    .pillar-card {
        width: 100%;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .steps {
        flex-direction: column;
        gap: 2rem;
    }

    .steps-line {
        display: none;
    }

    .step {
        text-align: left;
        display: flex;
        gap: 1.25rem;
        align-items: flex-start;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        flex-shrink: 0;
        margin: 0;
    }

    .step p {
        max-width: none;
        margin: 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .panel-community {
        padding: 5rem 0;
    }

    .panel-community h2 {
        font-size: 1.75rem;
    }

    .socialfi-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .socialfi-visual {
        order: -1;
    }

    .token-ring {
        width: 200px;
        height: 200px;
    }

    .token-core {
        width: 100px;
        height: 100px;
    }

    .token-symbol {
        font-size: 1.2rem;
    }

    .socialfi-content h2 {
        font-size: 1.75rem;
    }

    .manifesto-text {
        font-size: 1.25rem;
        padding: 0 1rem;
    }

    .depth-blob {
        opacity: 0.2;
        filter: blur(60px);
    }
}

/* ========================
   RESPONSIVE: Tablet
   ======================== */
@media (min-width: 768px) and (max-width: 1023px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bento-wide {
        grid-column: span 2;
    }

    .contrast-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .pillars-inner {
        flex-direction: column;
        width: 100%;
    }

    .pillar-card {
        width: 100%;
    }

    .side-nav {
        right: 0.75rem;
    }

    .side-nav-label {
        display: none;
    }
}

@media (min-width: 768px) {
    .hero-heading {
        font-size: 3.5rem;
    }

    .hero-logo {
        width: 96px;
    }
}

@media (min-width: 1024px) {
    .hero-heading {
        font-size: 4.5rem;
    }

    .section-heading {
        font-size: 2.75rem;
    }

    .socialfi-content h2 {
        font-size: 2.75rem;
    }

    .manifesto-text {
        font-size: 2rem;
    }
}
