/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #B15CF0;
  --primary-dark: #9333EA;
  --primary-light: #A98FDB;
  --accent: #F2A65A;
  --accent-dark: #C97D32;
  --bg: #120C1B;
  --bg2: #170F22;
  --bg3: #241934;
  --text: #F1E9F7;
  --text2: #B2A2C9;
  --text3: #6E6084;
  --border: rgba(196,168,235,0.16);
  --gradient-1: linear-gradient(135deg, #B15CF0 0%, #F2A65A 100%);
  --gradient-2: linear-gradient(135deg, #9333EA 0%, #B15CF0 100%);
  --gradient-3: linear-gradient(135deg, #F2A65A 0%, #A98FDB 100%);
}

body {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(18, 12, 27, 0.95);
  backdrop-filter: blur(20px);
  padding: 15px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.logo-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo-icon-fallback {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--accent);
  color: #17102b;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  flex-shrink: 0;
}

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

.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Sora', sans-serif;
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 4px 20px rgba(177, 92, 240, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(177, 92, 240, 0.5);
}

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

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

.btn-white:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

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

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: -50px;
  left: -50px;
  animation-delay: 2s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: #A98FDB;
  top: 50%;
  left: 50%;
  animation-delay: 4s;
}

.orb-4 {
  width: 200px;
  height: 200px;
  background: #9333EA;
  top: 20%;
  right: 30%;
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(177, 92, 240, 0.1);
  border: 1px solid rgba(177, 92, 240, 0.3);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

.badge-icon {
  font-size: 16px;
}

.features-carousel {
  overflow: hidden;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease backwards;
}

.carousel-track {
  display: flex;
  gap: 12px;
  animation: scroll 20s linear infinite;
}

.carousel-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(177, 92, 240, 0.1);
  border: 1px solid rgba(177, 92, 240, 0.2);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-light);
  white-space: nowrap;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.carousel-item:hover {
  background: rgba(177, 92, 240, 0.2);
  border-color: rgba(177, 92, 240, 0.4);
  transform: scale(1.05);
}

.carousel-icon {
  font-size: 18px;
}

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

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s backwards;
}

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text2);
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-stats {
  display: flex;
  gap: 30px;
  animation: fadeInUp 0.6s ease 0.4s backwards;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

.stat-label {
  font-size: 13px;
  color: var(--text3);
}

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

.hero-visual {
  animation: fadeInRight 0.8s ease 0.5s backwards;
}

.device-mockup {
  max-width: 320px;
  margin: 0 auto;
  perspective: 1000px;
}

.device-frame {
  background: linear-gradient(145deg, #170F22, #120C1B);
  border-radius: 45px;
  padding: 12px;
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  transform-style: preserve-3d;
  animation: floatDevice 6s ease-in-out infinite;
}

@keyframes floatDevice {
  0%, 100% {
    transform: translateY(0) rotateX(5deg) rotateY(-5deg);
  }
  50% {
    transform: translateY(-20px) rotateX(8deg) rotateY(5deg);
  }
}

.device-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #120C1B;
  border-radius: 20px;
  z-index: 10;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.device-screen {
  background: linear-gradient(180deg, #241934 0%, #170F22 100%);
  border-radius: 35px;
  padding: 0;
  overflow: hidden;
  position: relative;
  height: 600px;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.screen-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 50px 20px 20px;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.app-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.app-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.nav-item {
  flex: 1;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text2);
  text-align: center;
  transition: all 0.3s ease;
}

.nav-item.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.app-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.feed-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  animation: slideIn 0.5s ease forwards;
  opacity: 0;
}

.feed-item:nth-child(1) { animation-delay: 0.2s; }
.feed-item:nth-child(2) { animation-delay: 0.4s; }
.feed-item:nth-child(3) { animation-delay: 0.6s; }

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

.feed-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

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

.feed-user {
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 2px;
}

.feed-action {
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-time {
  font-size: 11px;
  color: var(--text3);
}

.app-bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.bottom-nav-item {
  font-size: 24px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.bottom-nav-item.active {
  opacity: 1;
  transform: scale(1.1);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mockup-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.mockup-name {
  font-weight: 600;
  font-size: 14px;
}

.mockup-status {
  font-size: 12px;
  color: var(--text3);
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.mockup-card {
  background: var(--bg2);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: slideInUp 0.5s ease forwards;
}

.mockup-card:nth-child(1) { animation-delay: 0.1s; }
.mockup-card:nth-child(2) { animation-delay: 0.2s; }
.mockup-card:nth-child(3) { animation-delay: 0.3s; }
.mockup-card:nth-child(4) { animation-delay: 0.4s; }

.mockup-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(177, 92, 240, 0.3);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mockup-poster {
  font-size: 32px;
  margin-bottom: 8px;
}

.mockup-title {
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-meta {
  font-size: 11px;
  color: var(--text3);
}

.mockup-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.mockup-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  opacity: 0;
  animation: slideInUp 0.5s ease forwards;
}

.mockup-badge:nth-child(1) { animation-delay: 0.5s; }
.mockup-badge:nth-child(2) { animation-delay: 0.6s; }
.mockup-badge:nth-child(3) { animation-delay: 0.7s; }
.mockup-badge:nth-child(4) { animation-delay: 0.8s; }
.mockup-badge:nth-child(5) { animation-delay: 0.9s; }

.mockup-badge:hover {
  transform: scale(1.2) rotate(10deg);
}

.mockup-badge.wood { border-color: #8b4513; }
.mockup-badge.gold { border-color: #ffd700; }
.mockup-badge.diamond { border-color: #00bfff; }
.mockup-badge.obsidian { border-color: #1a1a1a; }
.mockup-badge.divine { border-color: #ffd700; box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }

/* ===== FEATURES SECTION ===== */
.features {
  padding: 100px 20px;
  background: var(--bg2);
}

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

.section-header.light {
  color: var(--text);
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(177, 92, 240, 0.1);
  border: 1px solid rgba(177, 92, 240, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text3);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background:
    radial-gradient(340px 160px at 100% 0%, rgba(242,166,90,.07), transparent 60%),
    radial-gradient(380px 200px at 0% 0%, rgba(177,92,240,.1), transparent 55%),
    var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(177, 92, 240, 0.2);
}

.feature-card.featured {
  grid-column: span 1;
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(177, 92, 240, 0.1) 0%, rgba(242, 166, 90, 0.1) 100%);
}

.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--gradient-1);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: white;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(177,92,240,.16), rgba(242,166,90,.12));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-4deg);
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text3);
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 4px 12px;
  background: var(--bg2);
  border-radius: 8px;
  font-size: 11px;
  color: var(--text3);
  border: 1px solid var(--border);
}

.tier-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tier-row {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.tier-row.s { background: #ff7f7f; color: white; }
.tier-row.a { background: #ffbf7f; color: white; }
.tier-row.b { background: #ffdf80; color: #333; }
.tier-row.c { background: #80c080; color: white; }

.badges-preview {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge-item {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.badge-item::after {
  content: '';
  position: absolute;
  top: 12%; left: 22%;
  width: 22%; height: 14%;
  background: rgba(255,255,255,.45);
  border-radius: 50%;
  transform: rotate(-30deg);
}

/* Mesmas texturas/cores reais de cada tier no app (profile.css) — antes
   era um emoji genérico de círculo colorido que não batia com o design
   de verdade (Pedra em branco, Diamante em azul puro, etc). */
.badge-item.badge-madeira {
  background: repeating-linear-gradient(45deg, #8B4513 0px, #8B4513 2px, #A0522D 2px, #A0522D 4px), linear-gradient(145deg, #8B4513, #CD853F);
  border: 2px solid #654321;
  box-shadow: inset 0 0 6px rgba(0,0,0,.3);
}
.badge-item.badge-pedra {
  background: linear-gradient(145deg, #808080, #A9A9A9);
  border: 2px solid #606060;
}
.badge-item.badge-ferro {
  background: linear-gradient(145deg, #4a5568, #718096);
  border: 2px solid #2d3748;
  box-shadow: inset 0 1px 2px rgba(255,255,255,.2);
}
.badge-item.badge-ouro {
  background: linear-gradient(145deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  border: 2px solid #B8860B;
  box-shadow: 0 0 10px rgba(255,215,0,.4);
}
.badge-item.badge-diamante {
  background: linear-gradient(145deg, #00CED1, #40E0D0, #AFEEEE);
  border: 2px solid #008B8B;
  box-shadow: 0 0 12px rgba(64,224,208,.45);
}
.badge-item.badge-obsidiana {
  background: linear-gradient(145deg, #1a1a2e, #16213e, #0f3460);
  border: 2px solid #0a0a0a;
  box-shadow: 0 0 12px rgba(138,43,226,.45);
}
.badge-item.badge-radium {
  background: linear-gradient(145deg, #39ff14 0%, #00ff00 50%, #7fff00 100%);
  border: 2px solid #39ff14;
  box-shadow: 0 0 12px rgba(57,255,20,.6);
}
.badge-item.badge-divino {
  background: linear-gradient(145deg, #ffffff, #f0f0f0, #fffacd);
  border: 2px solid #d4af37;
  box-shadow: 0 0 16px rgba(255,255,255,.6), 0 0 22px rgba(212,175,55,.4);
}

.privacy-toggle {
  display: flex;
  gap: 8px;
  background: var(--bg2);
  padding: 4px;
  border-radius: 10px;
}

.toggle-option {
  flex: 1;
  padding: 8px;
  text-align: center;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text3);
  transition: all 0.3s ease;
}

.toggle-option.active {
  background: var(--primary);
  color: white;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 20px;
  background: var(--bg);
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.step.animate {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(177, 92, 240, 0.4);
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: var(--text3);
}

.step-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== COMMUNITY SECTION ===== */
.community {
  padding: 100px 20px;
  background: var(--bg2);
}

.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.community-features {
  list-style: none;
  margin-top: 24px;
}

.community-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text2);
}

.check {
  color: #6FBF8B;
  font-weight: 700;
}

.community-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.activity-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(30px);
}

.activity-card.animate {
  opacity: 1;
  transform: translateX(0);
}

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

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

.activity-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}

.activity-name {
  font-weight: 600;
  font-size: 14px;
}

.activity-action {
  font-size: 13px;
  color: var(--text3);
}

.activity-time {
  margin-left: auto;
  font-size: 12px;
  color: var(--text3);
}

.activity-content {
  display: flex;
  gap: 12px;
  align-items: center;
}

.activity-poster {
  font-size: 32px;
}

.activity-tierlist {
  display: flex;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}

.activity-tier {
  padding: 4px 8px;
  background: var(--bg2);
  border-radius: 6px;
}

.activity-title {
  font-weight: 600;
  font-size: 14px;
}

.activity-meta {
  font-size: 12px;
  color: var(--text3);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 20px;
  background: var(--bg);
}

.cta-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--gradient-1);
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.cta-decoration {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-circle:nth-child(1) {
  width: 200px;
  height: 200px;
  top: -100px;
  right: -100px;
}

.cta-circle:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: -75px;
  left: -75px;
}

.cta-circle:nth-child(3) {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 20%;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 20px 30px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-brand p {
  color: var(--text3);
  margin-top: 12px;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-column a {
  display: block;
  color: var(--text3);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text3);
}

.footer-credits-link {
  display: block;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 12px;
  color: var(--text3);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-credits-link:last-child {
  margin-bottom: 0;
}

.footer-credits-link:hover {
  color: var(--primary);
}

/* ===== CRÉDITOS ===== */
.credits-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,7,15,0.8);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.credits-overlay.hidden { display: none; }

.credits-box {
  position: relative;
  max-width: 360px;
  width: 100%;
  background: linear-gradient(160deg, var(--bg2) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 28px 30px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.credits-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text2);
  cursor: pointer;
  font-size: 14px;
}

.credits-close:hover { color: var(--text); border-color: var(--primary); }

.credits-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: 0 0 24px rgba(177,92,240,0.35);
  margin-bottom: 16px;
}

.credits-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.credits-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 14px;
}

.credits-desc {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 20px;
}

.credits-site-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.credits-site-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.donation-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.credits-support-msg {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 14px;
}

.credits-pix-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--primary);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.credits-pix-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.landing-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: 0 20px 45px -10px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 3000;
  max-width: min(90vw, 420px);
  text-align: center;
}

.landing-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    width: 100%;
  }

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

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

  .hero-visual {
    margin-top: 40px;
    width: 100%;
  }

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

  .community-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg2);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

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

  .feature-card.featured {
    grid-column: span 1;
  }

  .steps {
    flex-direction: column;
    gap: 30px;
  }

  .step-connector {
    width: 2px;
    height: 30px;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

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

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

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

  .device-mockup {
    max-width: 260px;
  }

  .device-screen {
    height: 480px;
  }
}
