/* ========== Reset & Base ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-dark: #0a0e1f;
    --bg-mid: #111633;
    --bg-light: #1a1f3a;
    --yellow: #FFD835;
    --yellow-deep: #F5B700;
    --diamond-blue: #a3c9f0;
    --diamond-deep: #6b8dc4;
    --diamond-purple: #8e7cc3;
    --ink: #1a1a2e;
    --text: #f0f4ff;
    --text-muted: #8a93b8;
    --border: rgba(163, 201, 240, 0.15);

    --font-display: 'Syne', sans-serif;
    --font-meme: 'Bangers', cursive;
    --font-body: 'Space Grotesk', sans-serif;

    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: default;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(163, 201, 240, 0.08), transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(142, 124, 195, 0.08), transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 216, 53, 0.03), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--diamond-blue) 0%, #e8f4ff 50%, var(--diamond-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shine 6s ease infinite;
}

@keyframes shine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ========== Cursor Glow ========== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 201, 240, 0.15), transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    mix-blend-mode: screen;
    transition: opacity 0.3s;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ========== Particles Canvas ========== */
#particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* ========== Navbar ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s var(--transition);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(10, 14, 31, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 0.5px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    filter: drop-shadow(0 0 10px rgba(163, 201, 240, 0.5));
    transition: transform 0.4s var(--transition);
}

.logo:hover .logo-img {
    transform: rotate(-8deg) scale(1.08);
}

.logo-text {
    background: linear-gradient(135deg, #ffffff, var(--diamond-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-muted);
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--diamond-blue);
    transition: width 0.3s var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--yellow);
    color: var(--ink);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s var(--transition);
    box-shadow: 0 0 0 2px var(--ink), 0 8px 24px rgba(255, 216, 53, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 2px var(--ink), 0 12px 32px rgba(255, 216, 53, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========== Hero ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--diamond-blue), transparent 70%);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--diamond-purple), transparent 70%);
    bottom: -200px;
    right: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--yellow), transparent 70%);
    top: 40%;
    left: 40%;
    opacity: 0.25;
    animation-delay: -14s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -40px) scale(1.1); }
    66% { transform: translate(-40px, 60px) scale(0.9); }
}

.hero-content {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(163, 201, 240, 0.1);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--diamond-blue);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #4ade80;
    opacity: 0.4;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.8); opacity: 0; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 8vw, 104px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 28px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: rise 1s var(--transition) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.25s; }
.title-line:nth-child(3) { animation-delay: 0.4s; }

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

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 36px;
    opacity: 0;
    animation: rise 1s var(--transition) 0.55s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    opacity: 0;
    animation: rise 1s var(--transition) 0.7s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 0 0 0 2px var(--ink), 0 10px 30px rgba(255, 216, 53, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 2px var(--ink), 0 16px 40px rgba(255, 216, 53, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--diamond-blue);
    background: rgba(163, 201, 240, 0.08);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    opacity: 0;
    animation: rise 1s var(--transition) 0.85s forwards;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--diamond-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: var(--border);
}

/* ========== Diamond Hero Scene ========== */
.hero-right {
    position: relative;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diamond-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diamond-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 201, 240, 0.4) 0%, rgba(142, 124, 195, 0.2) 40%, transparent 70%);
    filter: blur(60px);
    animation: glow-pulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

.diamond-container {
    position: relative;
    width: 460px;
    height: 460px;
    z-index: 2;
    animation: diamond-float 6s ease-in-out infinite;
    will-change: transform;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    box-shadow:
        0 30px 60px rgba(163, 201, 240, 0.35),
        0 0 0 2px rgba(255, 255, 255, 0.08);
    animation: logo-shimmer 4s ease-in-out infinite;
}

@keyframes diamond-float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-24px) rotate(2deg); }
}

@keyframes logo-shimmer {
    0%, 100% {
        box-shadow: 0 30px 60px rgba(163, 201, 240, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.08);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 35px 80px rgba(163, 201, 240, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.15);
        filter: brightness(1.08);
    }
}

.sparkle {
    position: absolute;
    color: #fff;
    font-size: 24px;
    text-shadow: 0 0 15px rgba(255,255,255,0.9);
    animation: sparkle 3s ease-in-out infinite;
    pointer-events: none;
}

.sparkle-1 { top: 10%; left: 20%; animation-delay: 0s; font-size: 32px; }
.sparkle-2 { top: 25%; right: 15%; animation-delay: 0.6s; }
.sparkle-3 { bottom: 30%; left: 10%; animation-delay: 1.2s; font-size: 20px; }
.sparkle-4 { top: 55%; right: 25%; animation-delay: 1.8s; font-size: 28px; }
.sparkle-5 { bottom: 15%; right: 10%; animation-delay: 2.4s; }

@keyframes sparkle {
    0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; }
    50% { transform: scale(1) rotate(180deg); opacity: 1; }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    z-index: 3;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(var(--diamond-blue), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -20px;
    width: 100%;
    height: 20px;
    background: var(--diamond-blue);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { top: -20px; }
    100% { top: 40px; }
}

/* ========== Marquee ========== */
.marquee {
    padding: 24px 0;
    background: var(--yellow);
    color: var(--ink);
    overflow: hidden;
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    transform: rotate(-1.5deg);
    margin: -20px 0;
    position: relative;
    z-index: 3;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: scroll-marquee 30s linear infinite;
    font-family: var(--font-meme);
    font-size: 32px;
    letter-spacing: 2px;
    gap: 40px;
}

.marquee-track span {
    padding-right: 40px;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== Sections (shared) ========== */
section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-block;
    color: var(--diamond-blue);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== About / Features ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 36px 28px;
    background: linear-gradient(145deg, rgba(26, 31, 58, 0.8), rgba(17, 22, 51, 0.4));
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(163, 201, 240, 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(163, 201, 240, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(163, 201, 240, 0.5));
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ========== How to Buy ========== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.step-card {
    padding: 36px 28px;
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid var(--border);
    border-radius: 24px;
    position: relative;
    transition: all 0.4s var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--yellow);
    box-shadow: 0 20px 40px rgba(255, 216, 53, 0.1);
}

.step-number {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 20px;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.contract-box {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px;
    background: linear-gradient(135deg, rgba(163, 201, 240, 0.08), rgba(142, 124, 195, 0.08));
    border: 1px solid var(--border);
    border-radius: 24px;
    text-align: center;
}

.contract-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-weight: 600;
}

.contract-pending {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(10, 14, 31, 0.6);
    padding: 16px 24px;
    border-radius: 14px;
    border: 1px solid var(--border);
    font-size: 15px;
    color: var(--diamond-blue);
    font-weight: 500;
    width: 100%;
}

/* ========== Roadmap ========== */
.timeline {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(180deg, var(--diamond-blue), var(--diamond-purple), var(--yellow));
    transform: translateX(-50%);
    opacity: 0.3;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 2px solid var(--diamond-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--diamond-blue);
    box-shadow: 0 0 25px rgba(163, 201, 240, 0.4);
    flex-shrink: 0;
    z-index: 2;
    animation: marker-pulse 3s ease-in-out infinite;
}

@keyframes marker-pulse {
    0%, 100% { box-shadow: 0 0 25px rgba(163, 201, 240, 0.4); }
    50% { box-shadow: 0 0 35px rgba(163, 201, 240, 0.8); }
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-marker {
    grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-marker {
    grid-column: 2;
}

.timeline-content {
    padding: 28px;
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s;
}

.timeline-content:hover {
    border-color: var(--diamond-blue);
    transform: translateY(-4px);
}

.timeline-phase {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
}

.timeline-content ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.timeline-content li {
    font-size: 14px;
    color: var(--text-muted);
    padding-left: 18px;
    position: relative;
}

.timeline-content li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--diamond-blue);
    font-size: 10px;
    top: 2px;
}

.timeline-item:nth-child(odd) .timeline-content ul {
    align-items: flex-end;
}

.timeline-item:nth-child(odd) .timeline-content li {
    padding-left: 0;
    padding-right: 18px;
}

.timeline-item:nth-child(odd) .timeline-content li::before {
    left: auto;
    right: 0;
}

/* ========== Community ========== */
.community {
    padding-bottom: 80px;
}

.community-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 48px;
    background:
        radial-gradient(circle at 20% 20%, rgba(163, 201, 240, 0.15), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 216, 53, 0.1), transparent 50%),
        linear-gradient(145deg, rgba(26, 31, 58, 0.9), rgba(17, 22, 51, 0.6));
    border: 1px solid var(--border);
    border-radius: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.community-card::before {
    content: '◆';
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 240px;
    color: rgba(163, 201, 240, 0.05);
    pointer-events: none;
}

.community-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.community-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    max-width: 780px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 20px;
    background: rgba(10, 14, 31, 0.5);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text);
    transition: all 0.3s var(--transition);
}

.social-link svg {
    margin-bottom: 4px;
    transition: transform 0.3s;
    color: var(--diamond-blue);
}

.social-link:hover {
    transform: translateY(-6px);
    border-color: var(--yellow);
    background: rgba(255, 216, 53, 0.05);
}

.social-link:hover svg {
    transform: scale(1.15);
    color: var(--yellow);
}

.social-name {
    font-weight: 700;
    font-size: 15px;
}

.social-handle {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========== Footer ========== */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.footer-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--diamond-blue);
    margin-bottom: 28px;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.7;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-right {
        height: 340px;
        order: -1;
    }

    .diamond-container {
        width: 300px;
        height: 300px;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 2;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        grid-column: 1;
    }

    .timeline-item:nth-child(odd) .timeline-content ul {
        align-items: flex-start;
    }

    .timeline-item:nth-child(odd) .timeline-content li {
        padding-left: 18px;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content li::before {
        left: 0;
        right: auto;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .marquee-track {
        font-size: 24px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: clamp(44px, 12vw, 68px);
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-divider {
        height: 32px;
    }

    .community-card {
        padding: 48px 24px;
    }

    .contract-address {
        font-size: 11px;
    }

    .cursor-glow {
        display: none;
    }
}
