@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #0d1117;
  --surface: #161b22;
  --surface-2: #21262d;
  --border: #30363d;
  --text: #c9d1d9;
  --muted: #8b949e;
  --accent: #4c6ef5;
  --accent-2: #5f3dc4;
  --success: #2ecc71;
  --shadow: rgba(0, 0, 0, 0.35);
  --sidebar-width: 260px;
}

body.light {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #f0f2f8;
  --border: #d8dee9;
  --text: #1f2937;
  --muted: #4b5563;
  --shadow: rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  display: flex;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1100;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s;
}

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

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 900;
}

.sidebar-overlay.show {
  display: block;
}

/* Sidebar */
.sidebar {
  width: var(--sidebar-width);
  min-height: 100vh;
  background: var(--surface);
  padding: 20px;
  border-right: 1px solid var(--border);
  overflow-y: auto;
  transition: transform 0.3s, background 0.3s;
  flex-shrink: 0;
  z-index: 1000;
}

.logo-text {
  margin: 0 0 8px;
  font-size: 1.15rem;
  text-align: center;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo {
  text-align: center;
  margin: 12px 0 20px;
}

.logo img {
  width: 110px;
  border-radius: 12px;
  box-shadow: 0 8px 24px var(--shadow);
}

.sidebar nav a {
  display: block;
  padding: 12px 14px;
  margin: 4px 0;
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px;
  transition: 0.2s;
}

.sidebar nav a:hover,
.sidebar nav a.active {
  background: var(--surface-2);
  color: var(--text);
}

body.light .sidebar nav a:hover,
body.light .sidebar nav a.active {
  background: var(--accent);
  color: #fff;
}

/* Main */
.main {
  flex: 1;
  min-width: 0;
  padding: 28px 32px 48px;
}

.page-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.search-wrap {
  position: relative;
  flex: 1;
  max-width: 360px;
  min-width: 200px;
}

.topbar input,
.search-wrap input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  outline: none;
  transition: 0.2s;
}

.topbar input:focus,
.search-wrap input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(76, 110, 245, 0.2);
}

.search-results {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 280px;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 32px var(--shadow);
  z-index: 500;
}

.search-results.show {
  display: block;
}

.search-results a {
  display: block;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: 0.15s;
}

.search-results a:last-child {
  border-bottom: none;
}

.search-results a:hover {
  background: var(--surface-2);
}

.search-results .search-meta {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

.search-empty {
  padding: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.topbar-link {
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(45deg, var(--accent), var(--accent-2));
  color: #fff !important;
  white-space: nowrap;
  transition: transform 0.2s, opacity 0.2s;
}

.topbar-link:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.theme-btn {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--text);
  cursor: pointer;
  transition: 0.2s;
  font-size: 0.9rem;
}

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

body.light .theme-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Hero & sections */
.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin: 0 0 10px;
  line-height: 1.15;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 24px;
}

.page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 10px;
}

.page-header p {
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 720px;
  line-height: 1.6;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 36px 0;
}

.highlight {
  text-align: center;
  padding: 20px 0;
}

.highlight h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
  color: var(--text);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-group a {
  text-decoration: none;
}

.btn-group button,
.btn-primary {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(45deg, var(--accent), var(--accent-2));
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-group button:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 110, 245, 0.35);
}

.btn-outline {
  display: inline-block;
  padding: 10px 18px;
  margin-top: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.2s;
}

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

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 28px var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.card-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 20px;
  background: var(--surface-2);
  color: var(--muted);
}

.event-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.event-list li {
  padding: 16px 20px;
  margin-bottom: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.event-list strong {
  display: block;
  margin-bottom: 4px;
}

.event-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact */
.contact-box {
  max-width: 560px;
  background: var(--surface);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.contact-box label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 12px 14px;
  margin: 8px 0 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: 0.2s;
}

.contact-box input:focus,
.contact-box textarea:focus {
  border-color: var(--accent);
}

.contact-box button[type="submit"] {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(45deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.contact-box button[type="submit"]:hover {
  opacity: 0.92;
}

.contact-box button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.contact-email:hover {
  text-decoration: underline;
}

.success {
  color: var(--success);
  display: none;
  margin-top: 12px;
  font-weight: 500;
}

.error-msg {
  color: #f85149;
  display: none;
  margin-top: 12px;
  font-size: 0.9rem;
}

.site-footer {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    height: 100vh;
    box-shadow: 8px 0 32px var(--shadow);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main {
    padding: 72px 20px 40px;
    width: 100%;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .search-wrap {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
  }

  .btn-group button {
    width: 100%;
  }
}

/* ========== NEW: Hero, stats, animations ========== */
.hero-modern {
  position: relative;
  padding: 36px 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--surface) 0%, var(--surface-2) 100%);
  overflow: hidden;
}

.hero-modern::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 55%;
  height: 120%;
  background: radial-gradient(circle, rgba(76, 110, 245, 0.25), transparent 65%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent), #a78bfa, var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-group .btn-secondary {
  background: var(--surface-2) !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
  box-shadow: none !important;
}

.btn-group .btn-secondary:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.stat-card {
  text-align: center;
  padding: 22px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: transform 0.25s;
}

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

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

.section-block {
  margin: 40px 0;
}

.section-title {
  font-size: 1.35rem;
  margin: 0 0 20px;
}

.tech-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-strip span {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: 0.2s;
}

.tech-strip span:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(76, 110, 245, 0.2);
}

.timeline {
  display: grid;
  gap: 20px;
  padding-left: 8px;
  border-left: 2px solid var(--border);
}

.timeline-item {
  position: relative;
  padding-left: 24px;
}

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px var(--bg);
}

.timeline-item h4 {
  margin: 0 0 6px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.testimonial-card {
  margin: 0;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-style: normal;
}

.testimonial-card p {
  margin: 0 0 12px;
  line-height: 1.55;
}

.testimonial-card cite {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: normal;
}

.cta-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  margin: 40px 0;
  border-radius: 16px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
}

.cta-banner h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.cta-banner p {
  margin: 0;
  opacity: 0.92;
}

.cta-banner .btn-primary {
  flex-shrink: 0;
  background: #fff !important;
  color: var(--accent-2) !important;
}

.faq-preview,
.faq-list {
  max-width: 720px;
}

.faq-item {
  margin-bottom: 10px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-card {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.25s;
}

.gallery-card:hover {
  transform: scale(1.02);
}

.gallery-card-hero {
  grid-column: span 2;
}

@media (max-width: 600px) {
  .gallery-card-hero {
    grid-column: span 1;
  }
}

.gallery-placeholder {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.gallery-card figcaption {
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.gallery-note {
  text-align: center;
  color: var(--muted);
  margin-top: 24px;
}

.site-footer-rich .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-bottom: 16px;
}

.site-footer-rich .footer-grid a {
  display: block;
  margin: 4px 0;
}

.footer-copy {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Announcement bar */
.announce-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  background: linear-gradient(90deg, rgba(76, 110, 245, 0.2), rgba(95, 61, 196, 0.2));
  border: 1px solid var(--border);
  border-radius: 10px;
}

.announce-bar a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.announce-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
}

/* Floating actions */
.fab-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 20px var(--shadow);
  transition: transform 0.2s;
}

.fab:hover {
  transform: scale(1.08);
}

.fab-whatsapp {
  background: #25d366;
  color: #fff;
}

.fab-top {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.fab-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* Page load */
body.is-loading .main {
  opacity: 0;
}

body.loaded .main {
  opacity: 1;
  transition: opacity 0.4s ease;
}

/* ========== Community home sections ========== */
.section-sub {
  color: var(--muted);
  margin: -8px 0 20px;
  line-height: 1.55;
}

.community-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin: 36px 0;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.community-intro-text p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 12px;
}

.community-location {
  font-size: 0.95rem;
  color: var(--text) !important;
}

.persona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.persona-card {
  padding: 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: 0.2s;
}

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

.persona-card span {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.persona-card strong {
  display: block;
  margin-bottom: 4px;
}

.persona-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.values-grid {
  margin: 40px 0;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.value-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: 0.25s;
}

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

.value-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 10px;
}

.value-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.value-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.join-steps {
  margin: 40px 0;
  padding: 28px;
  border-radius: 16px;
  border: 1px dashed var(--border);
  background: var(--surface-2);
}

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.step-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.95rem;
}

.step-card h4 {
  margin: 0 0 6px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.step-card a {
  color: var(--accent);
}

.events-preview {
  margin: 40px 0;
}

.events-preview-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.events-preview-head .section-title {
  margin: 0;
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.event-card {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: 0.25s;
}

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

.event-date {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.event-card h4 {
  margin: 10px 0 8px;
}

.event-card p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.event-type {
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--surface-2);
  color: var(--muted);
}

.contribute-section {
  margin: 40px 0;
}

.contribute-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.contribute-card {
  text-align: center;
  padding: 22px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: 0.2s;
}

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

.contribute-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.contribute-card h4 {
  margin: 0 0 8px;
}

.contribute-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.contribute-card a {
  color: var(--accent);
}

.contribute-cta {
  margin-top: 20px;
  text-align: center;
  color: var(--muted);
}

.contribute-cta a {
  color: var(--accent);
  font-weight: 600;
}

.channel-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: 0.25s;
}

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

.channel-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.channel-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.channel-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.channel-whatsapp:hover {
  border-color: #25d366;
}

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

.community-pulse {
  margin: 40px 0;
  padding: 24px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.pulse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.pulse-item {
  padding: 14px;
  background: var(--surface-2);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.pulse-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.pulse-item span {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.pulse-item a {
  color: var(--accent);
}

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

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