/* ==========================================================================
   Sargatxet.cloud — copia estática
   Sistema de diseño reconstruido desde WordPress/Elementor original.
   Fuentes y tokens autoalojados. Solo HTML5/CSS3/JS vanilla.
   ========================================================================== */

@font-face {
  font-family: 'Miriam Libre';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/miriam-libre-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Miriam Libre';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/miriam-libre-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Miriam Libre';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/miriam-libre-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/montserrat-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Mukta Vaani';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/mukta-vaani-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Mukta Vaani';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/mukta-vaani-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Mukta Vaani';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../assets/fonts/mukta-vaani-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Red Hat Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/red-hat-display-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Saira Stencil One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/saira-stencil-one-400.woff2') format('woff2');
}

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */
:root {
  --primary: #202C51;
  --secondary: #1F3578;
  --accent: #3357C4;
  --text: #FFFFFF;
  --slate: #5C6680;
  --ink: #181818;
  --body-bg: rgba(198, 204, 239, 0.28);
  --maxw: 1140px;

  --font-heading: 'Miriam Libre', sans-serif;
  --font-body: 'Mukta Vaani', sans-serif;
  --font-display: 'Saira Stencil One', sans-serif;
  --font-btn: 'Red Hat Display', sans-serif;
  --font-footer: 'Montserrat', sans-serif;

  --shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 15px 35px -10px rgba(67, 128, 236, 0.5);
  --radius: 10px;
  --transition: 0.25s ease;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--body-bg);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 1rem;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--secondary); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 15px;
}

.section-title {
  font-size: 2.6rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.5px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--secondary);
  color: #fff;
  padding: 8px 14px;
}
.skip-link:focus { left: 8px; top: 8px; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: relative;
  z-index: 50;
  padding: 5px;
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 64px;
}

.header-logo img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  padding: 10px 14px;
  display: inline-block;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: #fff; background: rgba(32, 44, 81, 0.35); }

.main-nav .has-sub { position: relative; }

.main-nav .has-sub > a::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  border: 5px solid transparent;
  border-top-color: var(--text);
  vertical-align: middle;
}

.submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 60;
}

.main-nav .has-sub:hover .submenu,
.main-nav .has-sub:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  display: block;
  font-weight: 400;
  font-size: 1rem;
  padding: 12px 20px;
  white-space: nowrap;
}
.submenu a:hover { background: var(--text); color: var(--primary); }

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 12px 26px;
  font-family: var(--font-btn);
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  background: #fff;
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.btn-discord svg { fill: var(--slate); width: 18px; height: 18px; }
.btn-discord:hover { background: var(--slate); color: #fff; }
.btn-discord:hover svg { fill: #fff; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  cursor: pointer;
  width: 42px;
  height: 42px;
  color: var(--text);
}
.nav-toggle svg { fill: var(--text); width: 28px; height: 28px; }

/* Header on dark pages (hero) is fine; standalone pages get solid bg */
.site-header.header-solid { background: var(--primary); }

/* --------------------------------------------------------------------------
   Hero (Home)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: var(--primary) url('../assets/images/fondo-home.jpeg') center right / cover no-repeat;
  color: var(--text);
  margin-top: -74px;
  padding: 120px 0 60px;
}

.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 44, 81, 0.55);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  color: var(--text);
  text-shadow: 10px 10px 0 rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
}

.hero-text {
  max-width: 860px;
  margin: 0 auto;
  padding: 5%;
  background: rgba(39, 37, 37, 0.85);
  color: var(--text);
  text-align: justify;
  box-shadow: var(--shadow);
  border-radius: 8px;
}

/* --------------------------------------------------------------------------
   Sección STAKE POOLS (Home)
   -------------------------------------------------------------------------- */
.pools-section { padding: 7% 0; }

.pools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 2.5rem;
}

.pool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 20px;
  background: var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  color: var(--text);
}

.pool-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(55, 0, 106, 0.83));
}

.pool-card h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--text);
  margin: 0;
}

.pool-card .roa {
  font-size: 1.05rem;
  color: var(--text);
}
.pool-card .roa strong { font-weight: 800; }

.pool-card .btn-delegar {
  margin-top: auto;
  padding: 10px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-btn);
  font-weight: 500;
  font-size: 14px;
  transition: background var(--transition);
}
.pool-card .btn-delegar:hover { background: var(--secondary); color: #fff; }

.pools-note {
  text-align: center;
  font-size: 1rem;
  color: var(--ink);
  margin-top: 2.5rem;
}

/* --------------------------------------------------------------------------
   Sección ¿Por qué delegar? (Home)
   -------------------------------------------------------------------------- */
.why-section {
  min-height: 100vh;
  padding: 8% 0;
  background: var(--primary) url('../assets/images/fondo-home.jpeg') center / cover no-repeat;
  color: var(--text);
}

.why-section .section-title { color: var(--text); }

.why-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 2.5rem auto;
  max-width: 1000px;
}

.why-row.reverse { flex-direction: row-reverse; }

.why-text {
  flex: 1;
  padding: 28px;
  background: var(--accent);
  color: var(--text);
  border-radius: 9px;
  text-align: justify;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.why-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.why-image img {
  max-height: 280px;
  animation: float 3s ease-in-out infinite;
}

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

/* --------------------------------------------------------------------------
   FAQ (acordeón)
   -------------------------------------------------------------------------- */
.faq-section { padding: 5% 0; }

.accordion { max-width: 900px; margin: 2rem auto 0; }

.accordion-item {
  margin-bottom: 12px;
  border-radius: 6px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--text);
  background: var(--accent);
  transition: background var(--transition);
}

.accordion-item.open .accordion-header { background: var(--primary); }

.accordion-icon { font-size: 1.4rem; font-weight: 800; line-height: 1; }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  background: var(--primary);
  color: var(--text);
  transition: max-height 0.35s ease;
}

.accordion-panel p { margin: 0; padding: 20px; }
.accordion-panel ol { padding: 20px 20px 20px 40px; margin: 0; }
.accordion-panel li { margin-bottom: 8px; }
.accordion-panel a { color: #fff; text-decoration: underline; }
.accordion-panel img { margin: 12px 0; }

/* --------------------------------------------------------------------------
   Tarjeta de pool (páginas de stake)
   -------------------------------------------------------------------------- */
.page-hero {
  padding: 60px 0 20px;
  background: var(--primary);
  color: var(--text);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text);
  text-shadow: 6px 6px 0 rgba(0, 0, 0, 0.5);
  margin: 0;
}

.stake-card {
  max-width: 420px;
  margin: 2.5rem auto;
  background: var(--primary);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  text-align: center;
}

.stake-card img { width: 110px; height: 110px; object-fit: contain; margin: 0 auto 10px; }

.stake-card h2 { font-family: var(--font-body); font-size: 2rem; font-weight: 500; color: var(--text); margin: 0 0 16px; }

.stake-detail {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1.05rem;
  text-align: left;
}
.stake-detail dt { font-weight: 800; white-space: nowrap; }
.stake-detail dd { margin: 0; text-align: right; overflow-wrap: anywhere; }

.copy-id {
  cursor: pointer;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-btn);
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 100px;
  transition: background var(--transition);
}
.copy-id:hover { background: var(--secondary); }
.copy-id.copied { background: #2e9e5b; }

.node-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 2.5rem auto;
}
.node-card {
  background: var(--primary);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: center;
}
.node-card .node-flag { font-size: 1.6rem; line-height: 1; }
.node-card img { width: 64px; height: 74px; object-fit: contain; margin: 10px auto; }
.node-card h3 { font-family: var(--font-body); font-weight: 500; font-size: 1.3rem; color: var(--text); margin: 0 0 8px; }
.node-card .node-id { font-size: 0.9rem; overflow-wrap: anywhere; word-break: break-all; margin: 10px 0; }
.node-card .roa { margin: 4px 0; font-size: 0.95rem; }
.node-card .node-stats {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.node-card .node-stat { margin: 4px 0; font-size: 0.95rem; }
.node-card .node-stat-muted { font-size: 0.8rem; color: rgba(255, 255, 255, 0.65); }
.node-stats-note {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.stake-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
  max-width: 950px;
  margin: 2.5rem auto;
  padding: 0 15px;
}
.stake-stats--wide { max-width: 1140px; }
.stake-stat {
  background: var(--primary);
  color: var(--text);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stake-stat .value { font-size: 1.8rem; font-weight: 800; font-family: var(--font-heading); }
.stake-stat .label { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; }

.stake-section { max-width: 900px; margin: 3rem auto; padding: 0 15px; }
.stake-section h2 { text-transform: uppercase; }
.stake-section.node-section { max-width: none; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 1.5rem;
}
.how-card {
  background: var(--primary);
  color: var(--text);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.how-card svg { width: 44px; height: 44px; fill: #fff; margin: 0 auto 10px; }
.how-card h3 { font-family: var(--font-body); font-size: 1.2rem; font-weight: 500; color: var(--text); margin: 0 0 6px; }
.how-card p { margin: 0; font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Calculadora de recompensas
   -------------------------------------------------------------------------- */
.calculator {
  max-width: 640px;
  margin: 2.5rem auto;
  background: var(--primary);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}
.calculator h2 { color: var(--text); text-align: center; text-transform: uppercase; }

.calc-form { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }

.calc-field label { font-weight: 800; font-size: 1.05rem; }

.calc-input-row { display: flex; align-items: stretch; }
.calc-input-row input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}
.calc-input-row .suffix {
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: var(--accent);
  border-radius: 0 8px 8px 0;
  font-weight: 800;
  font-size: 1.3rem;
}

.calc-btn {
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 100px;
  font-family: var(--font-btn);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}
.calc-btn:hover { background: var(--secondary); }

.calc-note { font-size: 0.95rem; text-align: center; opacity: 0.85; margin: 0; }

.calc-results { display: none; margin-top: 22px; }

.calc-results table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.calc-results th,
.calc-results td { padding: 10px; text-align: right; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.calc-results th { font-weight: 800; text-align: right; }
.calc-results th:first-child,
.calc-results td:first-child { text-align: left; }
.calc-results tr:last-child td { font-weight: 800; color: #9fe6c0; }

/* --------------------------------------------------------------------------
   Tarjetas de proyectos
   -------------------------------------------------------------------------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}
.project-card {
  background: var(--primary);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.project-card img { width: 110px; height: 110px; object-fit: contain; margin: 0 auto; }
.project-card h2 { font-family: var(--font-body); font-weight: 800; font-size: 1.35rem; color: var(--text); margin: 0; text-transform: uppercase; }
.project-card p { margin: 0; font-size: 1rem; }
.project-card .btn-delegar { margin-top: auto; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 1.5rem;
}
.feature {
  background: var(--primary);
  color: var(--text);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   OTC
   -------------------------------------------------------------------------- */
.otc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 2rem;
  align-items: center;
}
.otc-grid img { border-radius: var(--radius); box-shadow: var(--shadow); }

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 1.5rem;
}
.step-card {
  background: var(--primary);
  color: var(--text);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.step-card img { width: 100%; border-radius: 6px; margin: 10px 0; }
.step-card .step-label { font-weight: 800; color: var(--accent); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.step-card p { font-size: 0.98rem; margin: 8px 0 0; }

.token-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.token-lists ul { columns: 2; list-style: none; margin: 0; padding: 0; }
.token-lists li { padding: 6px 0; font-size: 1rem; border-bottom: 1px solid rgba(0,0,0,0.08); }
.token-lists li code { background: rgba(32,44,81,0.08); padding: 2px 6px; border-radius: 4px; }

/* --------------------------------------------------------------------------
   Formularios (contacto / registro)
   -------------------------------------------------------------------------- */
.form-card {
  max-width: 620px;
  margin: 2.5rem auto;
  background: var(--primary);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}
.form-card h2 { color: var(--text); text-align: center; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 800; margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { color: var(--ink); background: #fff; }
.form-group .hint { font-size: 0.85rem; opacity: 0.75; margin-top: 4px; }

.radio-row { display: flex; gap: 24px; margin-top: 6px; }
.radio-row label { font-weight: 400; display: flex; align-items: center; gap: 8px; }

.form-status { margin-top: 14px; font-size: 1rem; text-align: center; min-height: 1.2em; }
.form-status.ok { color: #9fe6c0; }
.form-status.err { color: #ffb3b3; }

/* Campo trampa anti-spam (honeypot): invisible para humanos, solo lo rellenan bots */
.honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Página simple (Nosotros / NFT)
   -------------------------------------------------------------------------- */
.plain-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 15px;
  text-align: center;
}
.plain-section p { font-size: 1.3rem; }
.plain-section img { margin: 0 auto 20px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--primary) url('../assets/images/fondo-footer.png') center / cover no-repeat;
  color: var(--text);
  padding-top: 40px;
}

.footer-logo { text-align: center; padding: 15px; }
.footer-logo img { width: 128px; height: 128px; border-radius: 50%; margin: 0 auto; background: var(--primary); }

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 15px;
  text-align: center;
}

.footer-cols h2 {
  font-family: var(--font-footer);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  text-transform: none;
  margin-bottom: 1rem;
}

.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin: 10px 0; }

.footer-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.05rem;
  transition: color var(--transition);
}
.footer-list a:hover { color: var(--secondary); }

.footer-list .icon svg { width: 22px; height: 22px; fill: var(--text); }
.footer-list a:hover .icon svg { fill: var(--primary); }

.footer-social {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 15px;
  text-align: center;
}
.footer-social h2 { font-family: var(--font-footer); font-size: 2rem; color: var(--text); }

.footer-social .footer-list { display: flex; justify-content: center; gap: 30px; }
.footer-social .footer-list a { color: #EFEFEF; }

.footer-resources { text-align: center; padding: 10px 15px 30px; }
.footer-resources h2 { font-family: var(--font-footer); font-size: 1.5rem; color: var(--text); }

.footer-bottom {
  background: var(--primary);
  text-align: center;
  padding: 18px 15px;
}
.footer-bottom h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text);
  margin: 0;
  letter-spacing: 2px;
}

/* --------------------------------------------------------------------------
   Banner de cookies
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 -2px 23px 3px rgba(0, 0, 0, 0.2);
  transform: translateY(120%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }

.cookie-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 15px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-inner p { margin: 0; flex: 1 1 320px; font-size: 0.95rem; justify-content: normal; text-align: justify; }
.cookie-btn {
  padding: 12px 28px;
  border: 0;
  border-radius: 6px;
  font-family: var(--font-btn);
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-accept { background: var(--secondary); color: #fff; }
.cookie-accept:hover { filter: brightness(1.15); }
.cookie-decline { background: transparent; color: #fff; text-decoration: underline; }
.cookie-decline:hover { text-decoration: none; }

/* --------------------------------------------------------------------------
   Animaciones reveal
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; }
.reveal.zoomIn { animation: ha_zoomIn 1s ease forwards; }
.reveal.fadeInLeft { animation: ha_fadeInLeft 1s ease forwards; }
.reveal.fadeInRight { animation: ha_fadeInRight 1s ease forwards; }

@keyframes ha_zoomIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes ha_fadeInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes ha_fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  body { font-size: 1.1rem; }

  .header-inner { flex-wrap: wrap; }

  .nav-toggle { display: block; }

  .main-nav {
    order: 3;
    display: none;
    flex-basis: 100%;
    background: var(--primary);
    border-radius: 8px;
    padding: 10px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; }
  .main-nav .has-sub > a::after { display: none; }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
  }
  .submenu a { white-space: normal; }

  .btn-discord { margin-left: auto; }
  .header-logo img { width: 48px; height: 48px; }
}

@media (max-width: 767px) {
  .hero { background-position: center left; }
  .why-row,
  .why-row.reverse { flex-direction: column; }
  .why-image img { max-height: 220px; }
  .token-lists { grid-template-columns: 1fr; }
  .token-lists ul { columns: 1; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-social .footer-list { flex-direction: column; gap: 14px; }
  .stake-stats { grid-template-columns: 1fr; }
  .accordion-header { font-size: 1.3rem; }
  .cookie-inner { justify-content: center; text-align: center; }
}
