/* ============================================
   BITBRIEF — Brand Stylesheet
   Primary: #FF6B00 | Dark: #0a0a0a | Accent: orange
   ============================================ */

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

:root {
    --primary: #FF6B00;
    --primary-rgb: 255, 107, 0;
    --primary-dark: #E05E00;
    --primary-light: #FF8C33;
    --primary-glow: #FFA54F;
    --bg: #0a0a0a;
    --bg-alt: #0f0f0f;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --surface: #1e1e1e;
    --surface-light: #2a2a2a;
    --border: rgba(255, 107, 0, 0.1);
    --border-hover: rgba(255, 107, 0, 0.25);
    --text: #f0ece6;
    --text-muted: #8a8278;
    --text-dim: #5a5550;
    --green: #00e676;
    --red: #ff5252;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --mono: 'JetBrains Mono', 'Fira Code', monospace;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: rgba(255, 107, 0, 0.3);
    color: #fff;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--surface-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- Cursor Glow --- */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

/* --- Particle Canvas --- */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* --- Utility --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.accent {
    color: var(--primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.up { color: var(--green) !important; }
.down { color: var(--red) !important; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: #0a0a0a;
}
.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hover);
}
.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

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

.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: 12px;
    z-index: 1001;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transition: transform var(--transition);
}

.nav-logo:hover .nav-logo-img {
    transform: rotate(-5deg) scale(1.05);
}

.nav-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
    border-radius: 1px;
}

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

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--primary);
    color: var(--bg);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

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

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    z-index: 1;
}

.hero-content {
    flex: 1;
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(var(--primary-rgb), 0.08);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(var(--primary-rgb), 0); }
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--mono);
    color: var(--primary);
}

.stat-suffix {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--mono);
    color: var(--primary);
}

.stat-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 4px;
}

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

/* Hero Visual — Banner + Headlines */
.hero-visual {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-owl-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(var(--primary-rgb), 0.06);
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-banner-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, transparent 30%);
    pointer-events: none;
}

.hero-ticker-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mini-headline {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    animation: headline-slide 0.6s ease-out both;
}

.mini-headline:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.mini-headline.h1 { animation-delay: 0.5s; }
.mini-headline.h2 { animation-delay: 0.7s; }
.mini-headline.h3 { animation-delay: 0.9s; }

@keyframes headline-slide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mini-tag {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.mini-tag.breaking {
    background: rgba(255, 82, 82, 0.15);
    color: var(--red);
    border: 1px solid rgba(255, 82, 82, 0.2);
}

.mini-tag.market {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.mini-tag.onchain {
    background: rgba(0, 230, 118, 0.1);
    color: var(--green);
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.mini-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* --- Section Shared --- */
section {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(var(--primary-rgb), 0.08);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- About --- */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.about-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

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

.about-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.about-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.about-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* --- Coverage (Features) --- */
.coverage {
    padding: 120px 0;
}

.coverage-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.coverage-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-row.reverse {
    direction: rtl;
}

.coverage-row.reverse > * {
    direction: ltr;
}

.coverage-number {
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.coverage-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.coverage-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.coverage-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.coverage-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.coverage-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

/* Terminal */
.terminal {
    background: #0d1117;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    font-family: var(--mono);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dots span:nth-child(1) { background: #ff5f57; }
.terminal-dots span:nth-child(2) { background: #febc2e; }
.terminal-dots span:nth-child(3) { background: #28c840; }

.terminal-title {
    font-size: 0.72rem;
    color: var(--text-dim);
}

.terminal-body {
    padding: 20px;
    min-height: 200px;
    font-size: 0.82rem;
    line-height: 1.8;
}

.terminal-line {
    display: flex;
    gap: 8px;
    align-items: center;
}

.t-prompt {
    color: var(--primary);
    font-weight: 700;
}

.t-cmd {
    color: var(--text);
}

.t-cursor {
    color: var(--primary);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.terminal-output {
    margin-top: 12px;
    color: var(--text-muted);
}

.terminal-output .t-line {
    opacity: 0;
    transform: translateY(4px);
    animation: line-appear 0.3s forwards;
}

.terminal-output .t-highlight {
    color: var(--primary);
    font-weight: 500;
}

.terminal-output .t-green {
    color: var(--green);
}

.terminal-output .t-red {
    color: var(--red);
}

@keyframes line-appear {
    to { opacity: 1; transform: translateY(0); }
}

/* Mini Chart */
.chart-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#miniChart {
    width: 100%;
    height: 200px;
}

.chart-overlay {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.chart-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.chart-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--mono);
}

.chart-stat-value small {
    font-size: 0.9rem;
}

/* News Stack */
.news-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    align-items: flex-start;
}

.news-item:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.news-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    margin-top: 6px;
    animation: pulse-dot 2s ease-in-out infinite;
}

.news-time {
    font-size: 0.72rem;
    font-family: var(--mono);
    color: var(--text-dim);
    display: block;
    margin-bottom: 6px;
}

.news-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.news-impact {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 4px;
}

.news-impact.high {
    background: rgba(255, 82, 82, 0.1);
    color: var(--red);
}

.news-impact.medium {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

/* --- Feed / Ticker --- */
.feed {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    overflow: hidden;
}

.ticker-wrapper {
    margin-bottom: 64px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    overflow: hidden;
}

.ticker {
    display: flex;
    gap: 48px;
    animation: ticker-scroll 30s linear infinite;
    width: max-content;
}

.ticker:hover {
    animation-play-state: paused;
}

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

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-size: 0.85rem;
}

.ticker-name {
    font-weight: 700;
    color: var(--primary);
    font-family: var(--mono);
}

.ticker-price {
    font-family: var(--mono);
    font-weight: 600;
    color: var(--text);
}

.ticker-change {
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 600;
}

.feed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feed-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feed-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(var(--primary-rgb), 0.04), transparent 70%);
    transition: opacity var(--transition);
    opacity: 0;
}

.feed-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.feed-card:hover .feed-card-bg {
    opacity: 1;
}

.feed-card.large {
    grid-column: 1 / -1;
    padding: 40px;
}

.feed-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.feed-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.feed-card.large h3 {
    font-size: 1.6rem;
}

.feed-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feed-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.feed-time {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-family: var(--mono);
}

.feed-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: all var(--transition);
}

.feed-link:hover {
    color: var(--primary-light);
}

/* --- Follow / Twitter --- */
.follow {
    padding: 120px 0;
}

.twitter-showcase {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
    align-items: start;
}

.twitter-profile {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.twitter-banner-wrap {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.twitter-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.twitter-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--bg-card));
}

.twitter-profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    margin-top: -24px;
    position: relative;
    z-index: 1;
}

.twitter-avatar {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 3px solid var(--bg-card);
}

.twitter-profile-text h3 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 700;
}

.twitter-handle {
    font-size: 0.82rem;
    color: var(--text-dim);
}

.twitter-profile-info .btn {
    margin-left: auto;
}

.twitter-bio {
    padding: 16px 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.twitter-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
}

.twitter-stat {
    padding: 16px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.twitter-stat:last-child {
    border-right: none;
}

.twitter-stat strong {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.twitter-stat span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

/* Twitter Content Preview */
.twitter-content-preview {
    padding: 0;
}

.twitter-content-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.content-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-type {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.content-type:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.content-type-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.content-type-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.content-type h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.content-type p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- CTA --- */
.cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 32px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-disclaimer {
    font-size: 0.8rem !important;
    color: var(--text-dim) !important;
    margin-top: 20px !important;
    font-style: italic;
}

/* --- Footer --- */
.footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 320px;
    line-height: 1.6;
}

.footer-links-group h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.footer-links-group a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 4px 0;
    transition: color var(--transition);
}

.footer-links-group a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-dim);
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding-top: 100px;
    }

    .hero-subtitle {
        max-width: 100%;
    }

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

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

    .hero-visual {
        width: 100%;
    }

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

    .coverage-row,
    .coverage-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }

    .twitter-showcase {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

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

    .feed-card.large {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: right var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .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);
    }

    .nav-link {
        font-size: 1.2rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hero-scroll-indicator {
        display: none;
    }
}
