/* ============================================
   THE WEIRDEST EXPERIMENT — Styles v2
   ============================================ */

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

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --text: #e8e8e8;
  --text-muted: #888888;
  --accent: #d4af37;
  --accent-glow: rgba(212, 175, 55, 0.3);
  --accent-bright: #f0d060;
  --green: #00ff88;
  --red: #ff4444;
  --font-main: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --max-width: 1200px;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--accent-bright);
}

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

::selection {
  background: var(--accent);
  color: var(--bg);
}

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

/* --- Grain Overlay --- */
.grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* --- Particles Canvas --- */
#particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 64px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
}

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

.nav-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}

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

.nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--accent-bright);
}

/* --- Nav Right (lang + burger) --- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* --- Language Selector --- */
.lang-selector {
  position: relative;
}

.lang-toggle {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.lang-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(17, 17, 17, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 150px;
  backdrop-filter: blur(20px);
  z-index: 1001;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.lang-dropdown.open {
  display: block;
}

.lang-dropdown a {
  display: block;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.2s;
}

.lang-dropdown a:hover {
  color: var(--text);
  background: rgba(212, 175, 55, 0.08);
}

.lang-dropdown a.lang-active {
  color: var(--accent);
}

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

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

/* --- Hero --- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 700;
  color: rgba(212, 175, 55, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 120px 64px 80px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

#hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.highlight {
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 60px; }
  50% { opacity: 0.3; height: 40px; }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

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

.btn-primary:hover {
  background: var(--accent-bright);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn-ghost:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-bright);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* --- Sections --- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-card);
}

.section-number {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 16px;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 60px;
}

/* --- Manifesto --- */
.manifesto {
  max-width: 700px;
}

.manifesto-lead {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--accent);
}

.manifesto p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.manifesto-list {
  list-style: none;
  margin: 24px 0 32px;
}

.manifesto-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.manifesto-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

blockquote {
  border-left: 3px solid var(--accent);
  padding: 24px 32px;
  margin: 32px 0;
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent-bright);
}

.pull-quote {
  margin: 48px 0;
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.pull-quote p {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* --- Grid --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* --- Stats Card --- */
.stats-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-mono);
}

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

/* --- Plan Cards --- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.plan-card {
  background: var(--bg);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

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

.plan-icon {
  margin-bottom: 16px;
  color: var(--accent);
}

.plan-icon svg {
  width: 32px;
  height: 32px;
}

.plan-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.plan-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.plan-note {
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  padding-left: 16px;
  border-left: 2px solid rgba(212, 175, 55, 0.2);
}

/* --- Progress & Milestones --- */
.progress-container {
  max-width: 700px;
  margin-bottom: 60px;
}

.progress-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}

.progress-raised {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--green);
}

.progress-goal {
  font-size: 1rem;
  color: var(--text-muted);
}

.progress-meta {
  display: flex;
  gap: 32px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.milestones-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
}

.milestone {
  background: var(--bg-card);
  padding: 32px;
  display: grid;
  grid-template-columns: 120px 200px 1fr;
  gap: 24px;
  align-items: center;
  transition: background 0.3s;
}

.milestone:hover {
  background: var(--bg-card-hover);
}

.milestone-amount {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.milestone-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.milestone p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.milestone-beyond {
  border-left: 3px solid var(--accent);
}

.milestone-beyond .milestone-amount {
  font-size: 2rem;
  color: var(--accent-bright);
}

.milestone-reached {
  border-left: 3px solid var(--green);
}

.milestone-reached .milestone-amount {
  color: var(--green);
}

.milestone-reached::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.milestone {
  position: relative;
}

/* --- Wallets / Donate --- */
.section-glow {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(212, 175, 55, 0.05) 50%, var(--bg) 100%);
}

.wallets {
  display: grid;
  gap: 20px;
  max-width: 700px;
}

.wallet-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: border-color 0.3s;
}

.wallet-card:hover {
  border-color: var(--accent);
}

.wallet-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.wallet-icon {
  font-size: 1.5rem;
  color: var(--accent);
}

.wallet-header h3 {
  font-size: 1rem;
  font-weight: 600;
}

.wallet-address {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  padding: 12px 16px;
  border-radius: 8px;
  overflow: hidden;
}

.wallet-address code {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-copy {
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s;
  flex-shrink: 0;
}

.btn-copy:hover {
  background: var(--accent-bright);
}

.btn-copy.copied {
  background: var(--green);
}

.donate-note {
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* --- Share Section --- */
.share-section {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.share-section h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.share-section > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-share {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-share:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* --- Log / Timeline --- */
.log-timeline {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid rgba(212, 175, 55, 0.2);
}

.log-entry {
  position: relative;
  margin-bottom: 48px;
  padding-left: 24px;
}

.log-entry:last-child {
  margin-bottom: 0;
}

.log-entry::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-card);
}

.log-date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.log-entry h3 {
  font-size: 1.3rem;
  margin: 8px 0 12px;
}

.log-entry p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.log-tag {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent);
  border-radius: 100px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.log-entry h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.log-entry h3 a:hover {
  color: var(--accent);
}

.log-read-more {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}

.log-read-more:hover {
  color: var(--accent-bright);
}

.log-see-all {
  display: inline-block;
  margin-top: 32px;
  margin-left: 32px;
  padding: 12px 28px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.log-see-all:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* --- Live Pulse --- */
.pulse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.pulse-card {
  background: var(--bg);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius);
  padding: 32px;
  max-height: 420px;
  display: flex;
  flex-direction: column;
}

.pulse-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pulse-card-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.live-feed {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  animation: feedIn 0.5s ease;
}

@keyframes feedIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--green);
}

.feed-dot.btc { background: #f7931a; box-shadow: 0 0 8px #f7931a; }
.feed-dot.eth { background: #627eea; box-shadow: 0 0 8px #627eea; }
.feed-dot.tron { background: #eb0029; box-shadow: 0 0 8px #eb0029; }
.feed-dot.bsc { background: #f3ba2f; box-shadow: 0 0 8px #f3ba2f; }
.feed-dot.polygon { background: #8247e5; box-shadow: 0 0 8px #8247e5; }
.feed-dot.arbitrum { background: #28a0f0; box-shadow: 0 0 8px #28a0f0; }
.feed-dot.base { background: #0052ff; box-shadow: 0 0 8px #0052ff; }

.feed-info {
  flex: 1;
  min-width: 0;
}

.feed-network {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feed-amount {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
}

.feed-time {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.feed-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  padding: 40px 0;
  text-align: center;
}

/* --- Wall of Believers --- */
.believers-wall {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
}

.believer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  transition: all 0.3s;
  animation: feedIn 0.5s ease;
}

.believer:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.believer-number {
  color: var(--accent);
  font-weight: 700;
}

.believer-address {
  opacity: 0.7;
}

/* --- Log Pages (individual entries) --- */
.log-header {
  position: relative;
  padding-top: 80px;
}

.log-page {
  padding: 60px 0 120px;
  min-height: 70vh;
}

.log-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 64px;
}

.log-back {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 48px;
  transition: color 0.3s;
}

.log-back:hover {
  color: var(--accent);
}

/* Listing page (log/index.html) */
.log-index-header {
  margin-bottom: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.log-index-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.log-index-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.log-index-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.log-index-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.log-card {
  display: block;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.log-card-date {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.log-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text);
}

.log-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.log-card-more {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Individual entry page */
.log-full-header {
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.log-full-date {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.log-full-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.log-full-header .log-tag {
  margin-top: 0;
}

.log-full-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.log-lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--accent-bright);
  margin-bottom: 32px;
  font-weight: 500;
}

.log-full-body p {
  margin-bottom: 24px;
  color: var(--text);
}

.log-h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 48px 0 20px;
  color: var(--text);
}

.log-list,
.log-stats-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.log-list li,
.log-stats-list li {
  padding: 12px 0 12px 28px;
  position: relative;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.log-list li::before,
.log-stats-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 12px;
  height: 2px;
  background: var(--accent);
}

.log-stats-list li strong {
  color: var(--accent);
  font-family: var(--font-mono);
}

.log-full-body em {
  color: var(--accent-bright);
  font-style: italic;
}

.log-nav {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.log-nav a,
.log-nav span {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.log-nav a:hover {
  color: var(--accent);
}

.log-nav-prev {
  justify-self: start;
}

.log-nav-all {
  justify-self: center;
  color: var(--accent) !important;
}

.log-nav-next {
  justify-self: end;
  text-align: right;
}

.log-nav-disabled {
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 768px) {
  .log-container {
    padding: 0 24px;
  }

  .log-page {
    padding: 40px 0 80px;
  }

  .log-header {
    padding-top: 60px;
  }

  .log-card {
    padding: 24px;
  }

  .log-nav {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .log-nav-prev,
  .log-nav-all,
  .log-nav-next {
    justify-self: center;
    text-align: center;
  }
}

/* --- Tweetable (click to tweet) --- */
.tweetable {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tweetable::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -36px;
  transform: translateY(-50%) scale(0.8);
  width: 24px;
  height: 24px;
  opacity: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}

.tweetable:hover {
  color: var(--accent-bright);
}

.tweetable:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  right: -32px;
}

.tweetable.pull-quote:hover,
.tweetable.pull-quote:hover p {
  color: var(--accent-bright);
}

.tweetable blockquote,
blockquote.tweetable {
  position: relative;
}

@media (max-width: 768px) {
  .tweetable::after {
    right: 8px;
    top: 12px;
    transform: scale(0.8);
    opacity: 0.6;
  }

  .tweetable:hover::after {
    right: 8px;
    transform: scale(1);
  }
}

/* --- Scrollbar for feed/wall --- */
.live-feed::-webkit-scrollbar,
.believers-wall::-webkit-scrollbar {
  width: 4px;
}

.live-feed::-webkit-scrollbar-track,
.believers-wall::-webkit-scrollbar-track {
  background: transparent;
}

.live-feed::-webkit-scrollbar-thumb,
.believers-wall::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.2);
  border-radius: 4px;
}

@media (max-width: 768px) {
  .pulse-grid {
    grid-template-columns: 1fr;
  }

  .pulse-card {
    max-height: 320px;
  }

}

/* --- FAQ --- */
.faq-list {
  max-width: 700px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.faq-item summary {
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- Footer --- */
.footer {
  padding: 80px 0 60px;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-quote {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 32px auto;
  opacity: 0.5;
}

.footer-text {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.footer-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-hash {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section .container {
  opacity: 0;
  transform: translateY(30px);
}

.section .container.visible {
  animation: fadeInUp 0.8s ease forwards;
}

/* --- Responsive: Tablet (768px) --- */
@media (max-width: 768px) {
  .nav {
    padding: 16px 24px;
  }

  .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #0a0a0a !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 1002;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text) !important;
    text-transform: none;
    letter-spacing: 0;
    padding: 18px 0;
    background: none !important;
    border: none !important;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    color: var(--accent) !important;
  }

  .nav-links .nav-cta {
    margin-top: 24px;
    padding: 16px 48px;
    font-size: 1.2rem;
    display: inline-block;
    background: var(--accent) !important;
    color: var(--bg) !important;
    border-radius: 100px;
  }

  .nav-right {
    z-index: 1003;
    position: relative;
  }

  .nav-toggle {
    display: flex;
    z-index: 1003;
  }

  .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-logo {
    font-size: 1rem;
    z-index: 1003;
    position: relative;
  }

  .lang-dropdown {
    right: 0;
  }

  #hero {
    padding: 0;
  }

  .hero-content {
    padding: 100px 28px 60px;
  }

  .hero-bg-text {
    font-size: clamp(5rem, 15vw, 10rem);
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .progress-raised {
    font-size: 2rem;
  }

  .progress-header {
    flex-direction: column;
    gap: 4px;
  }

  .milestone {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px;
  }

  .milestone-beyond .milestone-amount {
    font-size: 1.5rem;
  }

  .scroll-indicator {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .manifesto-lead {
    font-size: 1.25rem;
  }

  .pull-quote {
    padding: 24px;
  }

  .pull-quote p {
    font-size: 1.1rem;
  }

  blockquote {
    padding: 20px 24px;
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    text-align: center;
  }

  .share-buttons {
    flex-direction: column;
  }

  .btn-share {
    text-align: center;
  }

  .footer-quote {
    font-size: 0.9rem;
    padding: 0 8px;
  }

  .faq-item summary {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .log-timeline {
    padding-left: 24px;
  }

  .log-entry {
    padding-left: 16px;
  }

  .log-entry::before {
    left: -31px;
    width: 10px;
    height: 10px;
  }
}

/* --- Responsive: Small phones (480px) --- */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-content {
    padding: 90px 20px 50px;
  }

  #hero h1 {
    font-size: 1.6rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-tag {
    font-size: 0.75rem;
  }

  .stats-card {
    grid-template-columns: 1fr;
  }

  .nav {
    padding: 14px 16px;
  }

  .nav-logo {
    font-size: 0.85rem;
  }

  .wallet-card {
    padding: 20px;
  }

  .wallet-header h3 {
    font-size: 0.85rem;
  }

  .wallet-address {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .wallet-address code {
    font-size: 0.65rem;
    word-break: break-all;
    white-space: normal;
  }

  .btn-copy {
    text-align: center;
  }

  .progress-meta {
    flex-direction: column;
    gap: 8px;
  }

  .progress-raised {
    font-size: 1.8rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .plan-card {
    padding: 28px 24px;
  }

  .plan-card h3 {
    font-size: 1.05rem;
  }

  .milestone-amount {
    font-size: 1.1rem;
  }

  .footer {
    padding: 50px 0 40px;
  }

  .footer-quote {
    font-size: 0.8rem;
  }

  .footer-hash {
    font-size: 0.6rem;
  }
}

/* --- Responsive: Very small (360px) --- */
@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 85px 16px 40px;
  }

  #hero h1 {
    font-size: 1.4rem;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.8rem;
  }

  .stat {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }
}
