:root {
    --bg-primary: #050810;
    --bg-secondary: #0a0e1a;
    --bg-card: rgba(15, 22, 38, 0.6);
    --bg-card-hover: rgba(20, 30, 52, 0.8);
    --bg-glass: rgba(10, 16, 28, 0.7);

    --ton-blue: #229ED9;
    --ton-blue-deep: #0088CC;
    --ton-blue-dark: #005a8a;

    --star-gold: #FFD700;
    --star-orange: #FFA500;
    --star-bright: #FFE680;

    --gold: #FFD700;
    --red: #b91c1c;

    --text-primary: #e8eef7;
    --text-secondary: #9bafc7;
    --text-muted: #5a6f8c;

    --gradient-primary: linear-gradient(135deg, #FFD700, #FFA500);
    --gradient-secondary: linear-gradient(135deg, #229ED9, #0088CC);
    --gradient-accent: linear-gradient(135deg, #FFD700, #229ED9);
    --gradient-golden: linear-gradient(135deg, #FFE680, #FFA500);
    --gradient-crimson: linear-gradient(135deg, #b91c1c, #7f1d1d);

    --glow-gold: 0 0 40px rgba(255, 215, 0, 0.4);
    --glow-ton: 0 0 40px rgba(34, 158, 217, 0.35);
    --glow-red: 0 0 40px rgba(185, 28, 28, 0.3);

    --font-display: 'Orbitron', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius: 20px;
    --radius-sm: 12px;
    --radius-full: 9999px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: preloaderSpin 1.5s linear infinite;
}
.preloader-ring:nth-child(1) {
    inset: 0;
    border-top-color: var(--star-gold);
    animation-duration: 1.5s;
}
.preloader-ring:nth-child(2) {
    inset: 10px;
    border-right-color: var(--ton-blue);
    animation-duration: 2s;
    animation-direction: reverse;
}
.preloader-ring:nth-child(3) {
    inset: 20px;
    border-bottom-color: var(--star-orange);
    animation-duration: 2.5s;
}
.preloader-text {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}
@keyframes preloaderSpin { to { transform: rotate(360deg); } }
@keyframes preloaderPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    display: none;
}
@media (min-width: 768px) {
    .cursor-glow { display: block; }
}

#particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.floating-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 20s ease-in-out infinite;
}
.orb-1 { width: 400px; height: 400px; background: rgba(34, 158, 217, 0.10); top: 10%; left: -5%; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: rgba(255, 215, 0, 0.06); top: 60%; right: -5%; animation-delay: -5s; }
.orb-3 { width: 350px; height: 350px; background: rgba(0, 136, 204, 0.08); bottom: 10%; left: 30%; animation-delay: -10s; }
.orb-4 { width: 250px; height: 250px; background: rgba(255, 165, 0, 0.05); top: 30%; right: 20%; animation-delay: -15s; }
.orb-5 { width: 200px; height: 200px; background: rgba(34, 158, 217, 0.07); top: 50%; left: 10%; animation-delay: -8s; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 50px) scale(0.9); }
    75% { transform: translate(30px, 20px) scale(1.05); }
}

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

/* Reusable section background image (subtle decoration) */
.section-bg-image {
    position: absolute; inset: 0; z-index: 0;
    pointer-events: none; overflow: hidden;
}
.section-bg-image img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.18;
    filter: saturate(0.7) brightness(0.55);
}
.section-bg-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, transparent 25%, transparent 75%, var(--bg-primary) 100%);
}
.section-bg-image-soft img { opacity: 0.10; filter: saturate(0.6) brightness(0.5) hue-rotate(20deg); }

.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
    padding: 12px 0;
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px; z-index: 1001;
}
.logo-icon { line-height: 0; filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4)); }
.logo-text {
    font-family: var(--font-display); font-size: 20px; font-weight: 800; letter-spacing: 2px;
}
.accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-menu {
    display: flex; align-items: center; gap: 28px;
}
.nav-link {
    font-family: var(--font-heading); font-size: 15px; font-weight: 500;
    color: var(--text-secondary); transition: all 0.3s ease;
    position: relative; letter-spacing: 0.5px; padding: 4px 0;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 1px;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta {
    position: relative; font-family: var(--font-heading);
    font-size: 13px; font-weight: 600; padding: 10px 24px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary); color: #1a1500;
    transition: all 0.3s ease; letter-spacing: 0.5px; overflow: hidden;
}
.cta-pulse {
    position: absolute; inset: 0; border-radius: var(--radius-full);
    animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 0 12px rgba(255, 215, 0, 0); }
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--glow-gold); }
.nav-cta-terminal {
    background: rgba(34, 158, 217, 0.1); border: 1px solid rgba(34, 158, 217, 0.4);
    color: var(--ton-blue); font-size: 12px; padding: 8px 18px;
}
.nav-cta-terminal:hover { background: rgba(34, 158, 217, 0.2); border-color: var(--ton-blue); }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; z-index: 1001; padding: 4px;
}
.nav-toggle span {
    width: 24px; height: 2px; background: var(--text-primary);
    border-radius: 2px; transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

/* Hero background image (Unsplash) — sits behind CSS stars */
.hero-bg-image {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-bg-image img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.35;
    filter: saturate(1.1) brightness(0.85) hue-rotate(-10deg);
    animation: heroImgFade 1.2s ease-out;
}
.hero-bg-image::after {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 8, 16, 0.5) 0%, rgba(5, 8, 16, 0.7) 50%, var(--bg-primary) 100%),
        radial-gradient(ellipse at center, transparent 30%, rgba(5, 8, 16, 0.6) 80%);
}
@keyframes heroImgFade {
    from { opacity: 0; transform: scale(1.05); }
    to { opacity: 0.35; transform: scale(1); }
}

/* Star field background — pure CSS */
.hero-bg-stars {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
    background:
        radial-gradient(ellipse at top, rgba(34, 158, 217, 0.18), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(255, 215, 0, 0.06), transparent 60%),
        var(--bg-primary);
}
.hero-bg-stars::before,
.hero-bg-stars::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, white 0%, transparent 50%),
        radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.85) 0%, transparent 50%),
        radial-gradient(1.5px 1.5px at 80% 20%, #FFD700 0%, transparent 50%),
        radial-gradient(1px 1px at 40% 80%, white 0%, transparent 50%),
        radial-gradient(2px 2px at 90% 50%, rgba(34,158,217,0.9) 0%, transparent 50%),
        radial-gradient(1px 1px at 10% 90%, white 0%, transparent 50%),
        radial-gradient(1.5px 1.5px at 50% 10%, rgba(255,255,255,0.8) 0%, transparent 50%),
        radial-gradient(1px 1px at 75% 85%, #FFD700 0%, transparent 50%),
        radial-gradient(2px 2px at 30% 60%, white 0%, transparent 50%),
        radial-gradient(1px 1px at 95% 35%, rgba(255,255,255,0.7) 0%, transparent 50%);
    background-size: 600px 600px;
    background-repeat: repeat;
    opacity: 0.7;
    animation: starsTwinkle 6s ease-in-out infinite alternate;
}
.hero-bg-stars::after {
    background-size: 900px 900px;
    background-position: 200px 100px;
    opacity: 0.4;
    animation-duration: 9s;
    animation-delay: -3s;
}
@keyframes starsTwinkle {
    from { opacity: 0.4; }
    to { opacity: 0.85; }
}

.hero-bg-grid {
    position: absolute; inset: 0; z-index: 1;
    background-image:
        linear-gradient(rgba(34, 158, 217, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 158, 217, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-glow {
    position: absolute; border-radius: 50%;
    filter: blur(100px); pointer-events: none;
    animation: heroGlowFloat 8s ease-in-out infinite;
}
.glow-1 { width: 600px; height: 600px; background: rgba(34, 158, 217, 0.15); top: 20%; left: 10%; animation-delay: 0s; }
.glow-2 { width: 400px; height: 400px; background: rgba(255, 215, 0, 0.10); top: 40%; right: 5%; animation-delay: -3s; }
.glow-3 { width: 300px; height: 300px; background: rgba(0, 136, 204, 0.12); bottom: 10%; left: 40%; animation-delay: -6s; }
@keyframes heroGlowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.15); }
}

.hero-wrapper {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    gap: 60px; max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-content { text-align: center; max-width: 760px; flex: 1; }

/* Split hero — text + terminal preview */
.hero-wrapper-split {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1280px;
}
.hero-wrapper-split .hero-content-left { text-align: left; max-width: 100%; }
.hero-wrapper-split .hero-title { display: block; line-height: 0.95; margin-bottom: 14px; }
.hero-wrapper-split .hero-title .title-line {
    display: inline-block; font-size: clamp(54px, 9vw, 120px); letter-spacing: 4px;
}
.hero-wrapper-split .hero-subtitle { text-align: left; }
.hero-wrapper-split .hero-description { text-align: left; max-width: 540px; margin-left: 0; }
.hero-wrapper-split .hero-buttons { justify-content: flex-start; }
.hero-wrapper-split .live-strip { margin-left: 0; }

/* Hero feature checklist */
.hero-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    margin-bottom: 28px;
    max-width: 480px;
}
.hf-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--text-secondary);
    font-family: var(--font-heading); font-weight: 500;
}
.hf-check {
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e; font-size: 11px; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* Hero terminal preview (right column) */
.hero-content-right {
    flex: 1; max-width: 560px;
    position: relative;
}
.hero-terminal {
    position: relative;
    perspective: 1000px;
}
.ht-glow {
    position: absolute; inset: -40px; border-radius: 32px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.20), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(34, 158, 217, 0.20), transparent 50%);
    filter: blur(40px);
    z-index: 0;
    animation: htGlowPulse 6s ease-in-out infinite;
}
@keyframes htGlowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}
.ht-frame {
    position: relative; z-index: 2;
    background: linear-gradient(180deg, rgba(10, 16, 28, 0.95), rgba(15, 22, 38, 0.95));
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-content-right:hover .ht-frame { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.ht-header {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    background: rgba(8, 12, 22, 0.95);
    border-bottom: 1px solid rgba(34, 158, 217, 0.15);
}
.ht-dots { display: flex; gap: 6px; flex-shrink: 0; }
.ht-dot { width: 11px; height: 11px; border-radius: 50%; }
.ht-dot-r { background: #ef4444; }
.ht-dot-y { background: #fbbf24; }
.ht-dot-g { background: #22c55e; }
.ht-title {
    flex: 1; font-family: 'Courier New', monospace;
    font-size: 12px; color: var(--text-mute);
    letter-spacing: 0.5px;
}
.ht-tag {
    padding: 3px 10px; border-radius: 999px;
    background: rgba(255, 215, 0, 0.10);
    border: 1px solid rgba(255, 215, 0, 0.30);
    color: var(--star-gold);
    font-family: var(--font-heading); font-size: 10px; font-weight: 700;
    letter-spacing: 1px;
}
.ht-body {
    padding: 20px 18px;
    min-height: 240px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-secondary);
}
.ht-line { margin-bottom: 12px; }
.ht-prompt { color: var(--star-gold); margin-right: 8px; font-weight: 700; }
.ht-input { color: var(--text-primary); }
.ht-cursor {
    display: inline-block;
    color: var(--star-gold);
    animation: htCursorBlink 0.8s steps(2) infinite;
}
@keyframes htCursorBlink { 50% { opacity: 0; } }
.ht-output {
    color: var(--text-secondary);
    white-space: pre-wrap;
    font-size: 12.5px;
    line-height: 1.7;
}
.ht-output .ht-tag-inline {
    color: var(--star-gold); font-weight: 700;
    margin-right: 6px;
}
.ht-output .ht-data-line {
    background: rgba(34, 158, 217, 0.05);
    border-left: 2px solid var(--star-gold);
    padding: 2px 8px;
    margin: 4px 0;
    font-family: 'Courier New', monospace;
    font-size: 12px;
}

/* Floating tags around terminal */
.ht-floats { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.ht-float {
    position: absolute;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(8, 12, 22, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(34, 158, 217, 0.25);
    font-family: var(--font-heading); font-size: 12px; font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    animation: htFloat 6s ease-in-out infinite;
}
.ht-float-1 { top: -16px; left: -24px; animation-delay: 0s; }
.ht-float-2 { top: 40%; right: -32px; animation-delay: -2s; }
.ht-float-3 { bottom: -16px; left: 20%; animation-delay: -4s; }
@keyframes htFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 968px) {
    .hero-wrapper-split { grid-template-columns: 1fr; gap: 40px; }
    .hero-wrapper-split .hero-features { max-width: 100%; }
    .hero-content-right { max-width: 100%; }
    .ht-frame { transform: none; }
    .ht-float-1 { top: -16px; left: 0; }
    .ht-float-2 { top: 30%; right: 0; }
    .ht-float-3 { display: none; }
}
@media (max-width: 600px) {
    .hero-features { grid-template-columns: 1fr; }
    .ht-floats { display: none; }
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 20px; border-radius: var(--radius-full);
    background: rgba(34, 158, 217, 0.10);
    border: 1px solid rgba(34, 158, 217, 0.25);
    font-family: var(--font-heading); font-size: 13px; color: var(--ton-blue);
    margin-bottom: 28px;
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
    animation: pulse 2s ease-in-out infinite;
}
.badge-chain {
    padding: 2px 8px; border-radius: 4px;
    background: rgba(255, 215, 0, 0.15); color: var(--star-gold);
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}
.hero-title {
    font-family: var(--font-display); font-weight: 900; line-height: 1; margin-bottom: 20px;
    display: flex; justify-content: center; align-items: baseline; gap: 12px;
}
.title-line {
    display: inline-block; font-size: clamp(56px, 11vw, 130px); letter-spacing: 6px;
}
.accent-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
    font-family: var(--font-heading); font-size: clamp(18px, 2.5vw, 26px);
    color: var(--text-primary); margin-bottom: 16px; font-weight: 500;
    letter-spacing: 0.5px;
}
.hero-typewriter {
    font-family: var(--font-heading); font-size: clamp(16px, 2.5vw, 22px);
    color: var(--text-secondary); margin-bottom: 20px;
    letter-spacing: 2px; text-transform: uppercase; min-height: 32px;
}

/* Live strip — preço ao vivo no hero */
.live-strip {
    display: inline-flex; align-items: center; gap: 0;
    padding: 14px 8px; border-radius: 14px;
    background: rgba(8, 14, 26, 0.7); backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 158, 217, 0.20);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    margin-top: 8px;
}
.live-cell {
    display: flex; flex-direction: column; align-items: center;
    padding: 0 24px; min-width: 110px;
}
.live-label {
    font-family: var(--font-heading); font-size: 11px; font-weight: 600;
    color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 6px;
}
.live-value {
    font-family: var(--font-display); font-size: 20px; font-weight: 700;
    color: var(--text-primary); line-height: 1;
}
.live-change {
    font-family: 'Courier New', monospace; font-size: 12px; font-weight: 600;
    color: var(--text-muted); margin-top: 4px;
}
.live-change.positive { color: #22c55e; }
.live-change.negative { color: #ef4444; }
.live-divider {
    width: 1px; height: 36px; background: rgba(34, 158, 217, 0.20);
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .live-strip { flex-wrap: wrap; gap: 4px; padding: 12px; }
    .live-divider { display: none; }
    .live-cell { padding: 8px 16px; flex: 1 1 auto; }
}
.typewriter-prefix { color: var(--text-muted); margin-right: 8px; }
.typewriter-text { color: var(--star-gold); }
.typewriter-cursor {
    color: var(--star-gold); animation: cursorBlink 0.8s ease-in-out infinite;
}
@keyframes cursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero-description {
    font-size: 15px; color: var(--text-secondary); max-width: 540px;
    margin: 0 auto 36px; line-height: 1.8;
}
.hero-buttons {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin-bottom: 48px; flex-wrap: wrap;
}

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-full);
    font-family: var(--font-heading); font-size: 15px; font-weight: 600;
    letter-spacing: 0.5px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer; border: none; position: relative; overflow: hidden;
}
.btn-primary { background: var(--gradient-primary); color: #1a1500; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--glow-gold); }
.btn-glow::before {
    content: ''; position: absolute; inset: -2px; border-radius: var(--radius-full);
    background: var(--gradient-primary); z-index: -1; filter: blur(12px); opacity: 0.5;
    animation: btnGlow 3s ease-in-out infinite;
}
@keyframes btnGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}
.btn-secondary {
    background: transparent; color: var(--text-primary);
    border: 1px solid rgba(34, 158, 217, 0.4);
}
.btn-secondary:hover {
    border-color: var(--ton-blue); background: rgba(34, 158, 217, 0.1);
    transform: translateY(-3px);
}
.btn-outline {
    background: transparent; color: var(--text-secondary);
    border: 1px solid rgba(155, 175, 199, 0.25);
}
.btn-outline:hover {
    border-color: var(--star-gold); color: var(--star-gold);
    transform: translateY(-3px);
}
.btn-large { padding: 18px 40px; font-size: 17px; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%); display: flex; flex-direction: column;
    align-items: center; gap: 8px; z-index: 2;
}
.scroll-mouse {
    width: 24px; height: 38px; border-radius: 12px;
    border: 2px solid rgba(34, 158, 217, 0.4);
    display: flex; justify-content: center; padding-top: 8px;
}
.scroll-wheel {
    width: 3px; height: 8px; border-radius: 2px;
    background: var(--ton-blue);
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}
.scroll-indicator span {
    font-size: 11px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase;
}

/* Contract address banner — sticky, prominent */
.contract-banner {
    position: relative; z-index: 5;
    padding: 14px 0;
    background: linear-gradient(90deg,
        rgba(255, 215, 0, 0.10) 0%,
        rgba(34, 158, 217, 0.10) 50%,
        rgba(255, 215, 0, 0.10) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.25);
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
    backdrop-filter: blur(8px);
}
.cb-row {
    display: flex; align-items: center; gap: 16px;
    flex-wrap: wrap; justify-content: center;
}
.cb-label {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-heading); font-size: 12px;
    font-weight: 700; color: var(--star-gold);
    letter-spacing: 1.5px; text-transform: uppercase;
}
.cb-pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--star-gold);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
    animation: cbPulse 2s ease-in-out infinite;
}
@keyframes cbPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(255, 215, 0, 0); }
}
.cb-address {
    flex: 1 1 auto; min-width: 0; max-width: 600px;
    padding: 8px 16px;
    background: rgba(8, 12, 22, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.30);
    border-radius: 8px;
    overflow: hidden;
}
.cb-address code {
    font-family: 'Courier New', monospace;
    font-size: 13px; color: var(--star-gold);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    display: block;
}
.cb-copy-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: 8px;
    background: var(--gradient-primary);
    border: none; color: #1a1500;
    font-family: var(--font-heading); font-size: 13px; font-weight: 700;
    cursor: pointer; transition: transform 0.2s;
    flex-shrink: 0;
}
.cb-copy-btn:hover { transform: translateY(-1px); box-shadow: var(--glow-gold); }
.cb-copy-btn:active { transform: scale(0.97); }

.cb-chart-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 8px;
    background: rgba(34, 158, 217, 0.12);
    border: 1px solid rgba(34, 158, 217, 0.40);
    color: var(--ton);
    font-family: var(--font-heading); font-size: 13px; font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    flex-shrink: 0;
}
.cb-chart-btn:hover {
    background: rgba(34, 158, 217, 0.20);
    border-color: var(--ton);
    transform: translateY(-1px);
}

@media (max-width: 720px) {
    .cb-row { flex-direction: column; gap: 10px; }
    .cb-address { width: 100%; }
}

.marquee-section {
    position: relative; z-index: 1; padding: 16px 0;
    background: rgba(34, 158, 217, 0.04);
    border-top: 1px solid rgba(34, 158, 217, 0.10);
    border-bottom: 1px solid rgba(34, 158, 217, 0.10);
    overflow: hidden;
}
.marquee { display: flex; overflow: hidden; }
.marquee-content {
    display: flex; align-items: center; gap: 40px;
    animation: marquee 25s linear infinite; white-space: nowrap;
}
.marquee-content span {
    font-family: var(--font-display); font-size: 13px; font-weight: 600;
    color: var(--star-gold); letter-spacing: 3px;
}
.marquee-dot { color: var(--ton-blue) !important; font-size: 8px !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

section { position: relative; z-index: 1; padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block; font-family: var(--font-heading);
    font-size: 13px; font-weight: 600; color: var(--star-gold);
    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px;
    padding: 6px 18px; border-radius: var(--radius-full);
    background: rgba(255, 215, 0, 0.06); border: 1px solid rgba(255, 215, 0, 0.18);
}
.section-title {
    font-family: var(--font-display); font-size: clamp(30px, 5vw, 48px);
    font-weight: 800; letter-spacing: 2px;
}
.section-description {
    font-size: 15px; color: var(--text-secondary); max-width: 600px;
    margin: 16px auto 0; line-height: 1.8;
}

.about { background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); }
.about-showcase {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: center; margin-bottom: 80px;
}
.about-highlight {
    display: flex; gap: 20px; margin-bottom: 36px;
    padding: 24px; border-radius: var(--radius);
    background: var(--bg-card); border: 1px solid rgba(34, 158, 217, 0.10);
    transition: all 0.4s ease;
}
.about-highlight:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(8px);
    box-shadow: -4px 0 20px rgba(255, 215, 0, 0.08);
}
.highlight-number {
    font-family: var(--font-display); font-size: 36px; font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    opacity: 0.4; flex-shrink: 0; line-height: 1;
}
.about-highlight h3 {
    font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 8px;
}
.about-highlight p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

.about-visual { display: flex; justify-content: center; }
.about-image-wrap {
    position: relative; width: 100%; max-width: 480px;
}
.about-image-glow {
    position: absolute; inset: -20px; border-radius: 28px;
    background: radial-gradient(circle, rgba(34, 158, 217, 0.25) 0%, transparent 70%);
    z-index: 0;
}
.about-svg-frame {
    position: relative; z-index: 1;
    width: 100%; aspect-ratio: 1 / 1.2;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(10, 16, 28, 0.95), rgba(20, 30, 52, 0.85));
    border: 1px solid rgba(34, 158, 217, 0.20);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 0 80px rgba(34, 158, 217, 0.05);
    overflow: hidden;
}
.about-illustration { width: 100%; height: 100%; }
.floating-card {
    position: absolute; display: flex; align-items: center; gap: 10px;
    padding: 14px 20px; border-radius: var(--radius-sm);
    background: var(--bg-glass); backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 158, 217, 0.20);
    font-family: var(--font-heading); font-size: 14px; font-weight: 600;
    color: var(--text-primary); white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 2;
}
.fc-icon { color: var(--star-gold); line-height: 0; }
.fc-1 { top: 0; left: -10px; animation: fcFloat 6s ease-in-out infinite; }
.fc-2 { top: 20%; right: -10px; animation: fcFloat 6s ease-in-out infinite -1.5s; }
.fc-3 { bottom: 20%; left: -10px; animation: fcFloat 6s ease-in-out infinite -3s; }
.fc-4 { bottom: 0; right: 0; animation: fcFloat 6s ease-in-out infinite -4.5s; }
@keyframes fcFloat {
    0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); }
}

.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px;
}
.features-grid-large {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.features-grid-large .feature-card {
    text-align: left; padding: 32px 28px; position: relative;
}
.feature-card {
    background: var(--bg-card); border: 1px solid rgba(34, 158, 217, 0.10);
    border-radius: var(--radius); padding: 28px 20px; text-align: center;
    transition: all 0.4s ease;
}
.features-grid-large .feature-icon-wrap {
    margin: 0 0 18px 0;
}
.features-grid-large .feature-card h4 {
    font-size: 18px; margin-bottom: 10px;
}
.features-grid-large .feature-card p {
    text-align: left; line-height: 1.7;
}
.features-grid-large .feature-card code {
    background: rgba(34, 158, 217, 0.10);
    color: var(--star-gold);
    padding: 1px 6px; border-radius: 4px;
    font-size: 12px; font-family: 'Courier New', monospace;
}

.feature-status {
    position: absolute; top: 16px; right: 16px;
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-heading); font-size: 10px; font-weight: 700;
    letter-spacing: 1.5px; padding: 4px 10px; border-radius: var(--radius-full);
}
.feature-status-live {
    background: rgba(34, 197, 94, 0.10); color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.30);
}
.feature-status-pending {
    background: rgba(255, 165, 0, 0.10); color: #FFA500;
    border: 1px solid rgba(255, 165, 0, 0.30);
}
.feature-status .status-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: currentColor;
    animation: pulse 2s ease-in-out infinite;
}

.cta-row {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; margin-top: 48px;
}
.cta-subtext {
    font-size: 13px; color: var(--text-muted);
}
.feature-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-6px); box-shadow: var(--glow-gold);
}
.feature-icon-wrap {
    width: 56px; height: 56px; border-radius: 16px;
    background: rgba(255, 215, 0, 0.08);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; color: var(--star-gold);
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon-wrap {
    background: rgba(255, 215, 0, 0.15); transform: scale(1.1);
}
.feature-card h4 {
    font-family: var(--font-heading); font-size: 16px; font-weight: 600; margin-bottom: 8px;
}
.feature-card p { font-size: 13px; color: var(--text-muted); }

.characters { background: var(--bg-secondary); overflow: hidden; }
.characters-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.character-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    background: var(--bg-card); border: 1px solid rgba(34, 158, 217, 0.10);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.character-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 215, 0, 0.35);
}
.char-card-bg {
    position: absolute; top: 0; left: 0; right: 0; height: 220px;
    background: linear-gradient(135deg, rgba(34, 158, 217, 0.10), rgba(255, 215, 0, 0.05));
    transition: all 0.5s ease;
}
.character-card[data-color="red"] .char-card-bg { background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(0, 0, 0, 0.05)); }
.character-card[data-color="gold"] .char-card-bg { background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 165, 0, 0.06)); }
.character-card[data-color="silver"] .char-card-bg { background: linear-gradient(135deg, rgba(34, 158, 217, 0.12), rgba(138, 180, 248, 0.06)); }
.character-card[data-color="oil"] .char-card-bg { background: linear-gradient(135deg, rgba(255, 230, 128, 0.12), rgba(255, 165, 0, 0.06)); }

.char-card-glow {
    position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    opacity: 0; transition: opacity 0.5s ease;
}
.character-card:hover .char-card-glow { opacity: 1; }

.char-avatar {
    position: relative; z-index: 1;
    height: 280px; display: flex; align-items: center; justify-content: center;
    transition: transform 0.5s ease;
    overflow: hidden;
}
.character-card:hover .char-avatar { transform: scale(1.05); }
.char-svg { width: 75%; height: auto; filter: drop-shadow(0 4px 24px rgba(255, 215, 0, 0.25)); }

.char-info { position: relative; z-index: 1; padding: 24px; }
.char-name {
    font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin-bottom: 4px;
}
.char-role {
    font-family: var(--font-heading); font-size: 13px; font-weight: 500;
    color: var(--star-gold); text-transform: uppercase; letter-spacing: 2px;
    display: block; margin-bottom: 12px;
}
.char-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.char-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.char-tag {
    padding: 4px 12px; border-radius: var(--radius-full);
    background: rgba(34, 158, 217, 0.06);
    border: 1px solid color-mix(in srgb, var(--tag-color) 30%, transparent);
    font-size: 11px; font-weight: 600; color: var(--tag-color, var(--star-gold));
    font-family: var(--font-heading); letter-spacing: 1px;
}

.ai-agent { background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); }
.personas-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px; margin-bottom: 64px;
}
.persona-card {
    position: relative; border-radius: var(--radius);
    background: var(--bg-card); border: 1px solid rgba(34, 158, 217, 0.10);
    padding: 36px; overflow: hidden; transition: all 0.4s ease;
}
.persona-card:hover { transform: translateY(-8px); }
.persona-card.golden { border-color: rgba(255, 215, 0, 0.20); }
.persona-card.golden:hover { box-shadow: var(--glow-gold); border-color: rgba(255, 215, 0, 0.45); }
.persona-card.crimson { border-color: rgba(239, 68, 68, 0.20); }
.persona-card.crimson:hover { box-shadow: var(--glow-red); border-color: rgba(239, 68, 68, 0.45); }

.persona-glow {
    position: absolute; top: -100px; right: -100px;
    width: 250px; height: 250px; border-radius: 50%;
    filter: blur(80px); opacity: 0.18;
}
.persona-card.golden .persona-glow { background: var(--star-gold); }
.persona-card.crimson .persona-glow { background: var(--red); }

.persona-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.persona-avatar { width: 64px; height: 64px; flex-shrink: 0; }
.persona-avatar svg { width: 100%; height: 100%; }
.persona-name {
    font-family: var(--font-heading); font-size: 22px; font-weight: 700;
}
.persona-card.golden .persona-name { color: var(--star-gold); }
.persona-card.crimson .persona-name { color: var(--red); }
.persona-subtitle { font-size: 13px; color: var(--text-muted); }
.persona-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.persona-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.pf-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text-secondary);
    padding: 8px 12px; border-radius: var(--radius-sm);
    background: rgba(34, 158, 217, 0.04);
}
.persona-tag-line {
    font-family: var(--font-heading); font-size: 15px;
    font-style: italic; color: var(--text-muted);
    padding-top: 16px; border-top: 1px solid rgba(34, 158, 217, 0.10);
}

/* Terminal */
.terminal-preview {
    background: #08101e; border: 1px solid rgba(34, 158, 217, 0.20);
    border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.terminal-header {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 20px; background: rgba(34, 158, 217, 0.06);
    border-bottom: 1px solid rgba(34, 158, 217, 0.12);
}
.terminal-dots { display: flex; gap: 8px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ef4444; }
.dot.yellow { background: #fbbf24; }
.dot.green { background: #22c55e; }
.terminal-title {
    font-family: var(--font-heading); font-size: 13px;
    color: var(--text-muted); letter-spacing: 1px;
}
.terminal-body { padding: 24px; font-family: 'Courier New', monospace; font-size: 14px; }
.terminal-line {
    margin-bottom: 12px; opacity: 0;
    animation: terminalFadeIn 0.5s ease forwards;
}
.terminal-line[data-delay="0"] { animation-delay: 0.5s; }
.terminal-line[data-delay="800"] { animation-delay: 1.3s; }
.terminal-line[data-delay="1600"] { animation-delay: 2.1s; }
.terminal-line[data-delay="2400"] { animation-delay: 2.9s; }
.terminal-line[data-delay="3200"] { animation-delay: 3.7s; }
.terminal-line[data-delay="4000"] { animation-delay: 4.5s; }
@keyframes terminalFadeIn { to { opacity: 1; } }
.t-prompt { color: var(--ton-blue); margin-right: 8px; }
.t-command { color: var(--text-primary); }
.t-output { margin-right: 8px; font-weight: 700; }
.t-golden { color: var(--star-gold); }
.t-crimson { color: var(--red); }
.t-text { color: var(--text-secondary); }
.t-cursor { color: var(--ton-blue); animation: cursorBlink 0.8s ease-in-out infinite; }

.tokenomics { background: var(--bg-primary); }
.tokenomics-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center; margin-bottom: 48px;
}
.donut-chart { position: relative; max-width: 280px; margin: 0 auto; }
.donut-chart svg { width: 100%; transform: rotate(-90deg); }
.chart-segment { transition: all 1s ease; }
.chart-center {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); text-align: center;
}
.chart-total {
    display: block; font-family: var(--font-display); font-size: 32px; font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.chart-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.token-item { margin-bottom: 24px; }
.token-color { width: 12px; height: 12px; border-radius: 50%; display: inline-block; margin-right: 8px; vertical-align: middle; }
.token-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.token-name { font-family: var(--font-heading); font-size: 15px; font-weight: 500; color: var(--text-secondary); }
.token-percent { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.token-bar { width: 100%; height: 6px; background: rgba(34, 158, 217, 0.10); border-radius: var(--radius-full); overflow: hidden; }
.token-fill { height: 100%; border-radius: var(--radius-full); width: 0; transition: width 1.5s ease; }
.token-features { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.feature-tag {
    padding: 8px 16px; border-radius: var(--radius-full);
    background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.2);
    font-family: var(--font-heading); font-size: 12px; font-weight: 600; color: #22c55e;
}

.contract-address {
    text-align: center; padding: 28px;
    background: var(--bg-card); border: 1px solid rgba(34, 158, 217, 0.10); border-radius: var(--radius);
}
.ca-label {
    display: block; font-family: var(--font-heading); font-size: 13px;
    color: var(--text-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1.5px;
}
.ca-box {
    display: inline-flex; align-items: center; gap: 16px;
    padding: 12px 24px; background: rgba(34, 158, 217, 0.06);
    border: 1px solid rgba(34, 158, 217, 0.20); border-radius: var(--radius-sm);
    flex-wrap: wrap; justify-content: center;
}
.ca-box code { font-family: 'Courier New', monospace; font-size: 14px; color: var(--star-gold); }
.copy-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; border: 1px solid rgba(34, 158, 217, 0.25);
    border-radius: var(--radius-sm); background: transparent;
    color: var(--ton-blue); font-family: var(--font-heading); font-size: 12px;
    cursor: pointer; transition: all 0.3s ease;
}
.copy-btn:hover { background: rgba(34, 158, 217, 0.1); border-color: var(--ton-blue); }

.roadmap { background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); }
.roadmap-timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline-line {
    position: absolute; left: 20px; top: 0; bottom: 0; width: 2px;
    background: rgba(34, 158, 217, 0.15);
}
.timeline-progress {
    position: absolute; left: 20px; top: 0; width: 2px;
    background: var(--gradient-primary); height: 0;
    transition: height 1s ease;
}
.roadmap-phase { display: flex; gap: 36px; margin-bottom: 40px; position: relative; }
.phase-marker { flex-shrink: 0; width: 42px; display: flex; justify-content: center; padding-top: 4px; }
.phase-dot {
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--bg-primary); border: 2px solid rgba(34, 158, 217, 0.3);
    position: relative; z-index: 1; transition: all 0.5s ease;
}
.phase-dot.active {
    background: var(--star-gold); border-color: var(--star-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}
.phase-content {
    background: var(--bg-card); border: 1px solid rgba(34, 158, 217, 0.10);
    border-radius: var(--radius); padding: 28px; flex: 1; transition: all 0.4s ease;
}
.phase-content:hover { border-color: rgba(255, 215, 0, 0.3); transform: translateX(8px); }
.phase-label {
    font-family: var(--font-heading); font-size: 12px; font-weight: 600;
    color: var(--star-gold); text-transform: uppercase; letter-spacing: 2px;
}
.phase-content h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin: 6px 0 14px; }
.phase-content li {
    font-size: 14px; color: var(--text-secondary); padding: 5px 0 5px 20px; position: relative;
}
.phase-content li::before {
    content: ''; position: absolute; left: 0; top: 12px;
    width: 6px; height: 6px; border-radius: 50%; background: rgba(34, 158, 217, 0.5);
}
.phase-content li.done { color: var(--text-muted); text-decoration: line-through; }
.phase-content li.done::before { background: #22c55e; }

.howtobuy { background: var(--bg-secondary); }
.steps-grid {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin-bottom: 48px; flex-wrap: wrap;
}
.step-card {
    background: var(--bg-card); border: 1px solid rgba(34, 158, 217, 0.10);
    border-radius: var(--radius); padding: 36px 24px; text-align: center;
    flex: 1; min-width: 200px; max-width: 260px; transition: all 0.4s ease;
}
.step-card:hover {
    border-color: rgba(255, 215, 0, 0.3); transform: translateY(-8px);
    box-shadow: var(--glow-gold);
}
.step-number {
    font-family: var(--font-display); font-size: 42px; font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    opacity: 0.3; margin-bottom: 12px;
}
.step-icon { color: var(--star-gold); margin-bottom: 16px; }
.step-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }
.step-connector { display: flex; align-items: center; color: var(--ton-blue); }
.buy-cta { text-align: center; }

.community { background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); }
.social-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px; max-width: 960px; margin: 0 auto;
}
.social-card {
    position: relative; overflow: hidden;
    background: var(--bg-card); border: 1px solid rgba(34, 158, 217, 0.10);
    border-radius: var(--radius); padding: 36px 24px; text-align: center;
    transition: all 0.4s ease;
}
.social-card:hover { transform: translateY(-8px); border-color: rgba(255, 215, 0, 0.3); }
.social-bg {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-primary); transform: scaleX(0);
    transition: transform 0.4s ease; transform-origin: left;
}
.social-card:hover .social-bg { transform: scaleX(1); }
.social-icon {
    width: 72px; height: 72px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; transition: all 0.4s ease;
}
.social-icon.telegram { background: rgba(34, 158, 217, 0.12); color: var(--ton-blue); }
.social-icon.twitter { background: rgba(255, 255, 255, 0.04); color: var(--text-primary); }
.social-icon.discord { background: rgba(88, 101, 242, 0.10); color: #5865f2; }
.social-icon.tiktok { background: rgba(255, 255, 255, 0.04); color: var(--text-primary); }
.social-card:hover .social-icon { transform: scale(1.1) translateY(-4px); }
.social-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.social-card p { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.social-link-text {
    font-family: var(--font-heading); font-size: 13px; font-weight: 600;
    color: var(--star-gold); opacity: 0; transform: translateY(8px);
    transition: all 0.3s ease;
}
.social-card:hover .social-link-text { opacity: 1; transform: translateY(0); }

.dapp-cta-section {
    position: relative; z-index: 1; padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}
.dapp-preview { max-width: 900px; margin: 0 auto; }
.dapp-preview-window {
    border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(34, 158, 217, 0.20);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(34, 158, 217, 0.1);
    margin-bottom: 40px;
}
.dapp-preview-header {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; background: rgba(8, 14, 26, 0.95);
    border-bottom: 1px solid rgba(34, 158, 217, 0.10);
}
.dapp-preview-dots { display: flex; gap: 6px; }
.dpd { width: 10px; height: 10px; border-radius: 50%; }
.dpd.red { background: #ef4444; }
.dpd.yellow { background: #fbbf24; }
.dpd.green { background: #22c55e; }
.dapp-preview-url {
    font-family: 'Courier New', monospace; font-size: 12px;
    color: var(--text-muted); background: rgba(34, 158, 217, 0.06);
    padding: 4px 12px; border-radius: 6px; border: 1px solid rgba(34, 158, 217, 0.10);
}
.dapp-preview-body {
    display: flex; min-height: 260px; background: #06101e;
}
.dapp-preview-sidebar {
    width: 60px; background: rgba(8, 14, 26, 0.95);
    border-right: 1px solid rgba(34, 158, 217, 0.10);
    padding: 16px 10px; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.dp-logo { line-height: 0; }
.dp-nav-item { width: 36px; height: 36px; border-radius: 10px; background: rgba(34, 158, 217, 0.06); }
.dp-active { background: rgba(255, 215, 0, 0.15) !important; border: 1px solid rgba(255, 215, 0, 0.25); }
.dapp-preview-main { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.dp-msg { display: flex; gap: 10px; }
.dp-msg.user { justify-content: flex-end; }
.dp-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--star-gold), var(--star-orange)); flex-shrink: 0; }
.dp-avatar.crimson-av { background: linear-gradient(135deg, #ef4444, #7f1d1d); }
.dp-bubble {
    padding: 12px 16px; border-radius: 14px; font-size: 13px;
    color: var(--text-secondary); line-height: 1.6; max-width: 500px;
    background: rgba(16, 24, 42, 0.8); border: 1px solid rgba(34, 158, 217, 0.10);
}
.dp-bubble-user {
    padding: 12px 16px; border-radius: 14px; font-size: 13px;
    color: var(--text-primary); max-width: 300px;
    background: rgba(34, 158, 217, 0.15); border: 1px solid rgba(34, 158, 217, 0.25);
}
.dp-persona { font-size: 11px; font-weight: 700; letter-spacing: 1px; display: block; margin-bottom: 4px; }
.golden-text { color: var(--star-gold); }
.crimson-text { color: #ef4444; }
.dapp-cta-buttons {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap;
}

.cta-banner {
    position: relative; z-index: 1; padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
}
.cta-content { text-align: center; }
.cta-content h2 {
    font-family: var(--font-display); font-size: clamp(24px, 4vw, 40px);
    font-weight: 800; margin-bottom: 16px; letter-spacing: 1px;
}
.cta-content p { font-size: 16px; color: var(--text-secondary); margin-bottom: 36px; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

.footer {
    position: relative; z-index: 1;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(34, 158, 217, 0.08); padding: 64px 0 28px;
}
.footer-content {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-disclaimer { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 340px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(34, 158, 217, 0.08); border: 1px solid rgba(34, 158, 217, 0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); transition: all 0.3s ease;
}
.footer-socials a:hover {
    color: var(--star-gold); border-color: var(--star-gold);
    background: rgba(255, 215, 0, 0.10);
}
.footer-links h4 {
    font-family: var(--font-heading); font-size: 15px; font-weight: 600;
    margin-bottom: 16px; color: var(--text-primary);
}
.footer-links a {
    display: block; font-size: 13px; color: var(--text-muted);
    padding: 5px 0; transition: all 0.3s ease;
}
.footer-links a:hover { color: var(--star-gold); transform: translateX(4px); }
.footer-bottom {
    text-align: center; padding-top: 24px;
    border-top: 1px solid rgba(34, 158, 217, 0.08);
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }

.animate-on-scroll {
    opacity: 0; transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.visible {
    opacity: 1; transform: translateY(0);
}

@media (max-width: 968px) {
    .tokenomics-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-showcase { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { order: -1; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
    .personas-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: rgba(5, 8, 16, 0.98); backdrop-filter: blur(24px);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 36px; transition: right 0.4s ease;
    }
    .nav-menu.active { right: 0; }
    .nav-link { font-size: 22px; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .ca-box { flex-direction: column; gap: 12px; }
    .steps-grid { flex-direction: column; align-items: center; }
    .step-connector { transform: rotate(90deg); }
    .footer-content { grid-template-columns: 1fr; }
    .characters-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .characters-grid { grid-template-columns: 1fr; }
    section { padding: 80px 0; }
}
@media (min-width: 1100px) {
    .hero-content { max-width: 800px; }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(34, 158, 217, 0.30); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(34, 158, 217, 0.5); }
::selection { background: rgba(255, 215, 0, 0.35); color: #1a1500; }
